Skip to content

Commit

Permalink
Fix plugin path @Willy-JL
Browse files Browse the repository at this point in the history
  • Loading branch information
bettse committed Apr 29, 2024
1 parent 2659fec commit c6581be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion picopass.c
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ Picopass* picopass_alloc() {
plugin_manager_alloc(PLUGIN_APP_ID, PLUGIN_API_VERSION, firmware_api_interface);

picopass->plugin_wiegand = NULL;
if(plugin_manager_load_all(picopass->plugin_manager, APP_DATA_PATH("plugins")) !=
if(plugin_manager_load_all(picopass->plugin_manager, APP_ASSETS_PATH("plugins")) !=
PluginManagerErrorNone) {
FURI_LOG_E(TAG, "Failed to load all libs");
} else {
Expand Down

0 comments on commit c6581be

Please sign in to comment.