Skip to content

Commit

Permalink
chore: ensure executable
Browse files Browse the repository at this point in the history
  • Loading branch information
appflowy committed Jul 13, 2024
1 parent 15dda4d commit 515048a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion appflowy-plugin/src/core/plugin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,10 @@ fn handle_macos_security_check(plugin_info: &PluginInfo) {
});
}
},
Err(_) => open_manually = true,
Err(err) => {
error!("Failed to list xattr: {:?}", err);
open_manually = true;
},
}

if open_manually {
Expand Down

0 comments on commit 515048a

Please sign in to comment.