Desktop: Fixes #13880: Warning logged on startup when ABC Sheet Music plugin is not installed

This commit is contained in:
Laurent Cozic
2025-12-12 09:49:57 +00:00
parent ab3a0ab69f
commit 44de1246d9
+10 -8
View File
@@ -281,14 +281,16 @@ class Application extends BaseApplication {
}
// As of Joplin 3.5.7, the ABC rendering is part of the app so we automatically disable the plugin
pluginSettings = {
...pluginSettings,
['org.joplinapp.plugins.AbcSheetMusic']: {
enabled: false,
deleted: false,
hasBeenUpdated: false,
},
};
if (pluginSettings['org.joplinapp.plugins.AbcSheetMusic']) {
pluginSettings = {
...pluginSettings,
['org.joplinapp.plugins.AbcSheetMusic']: {
enabled: false,
deleted: false,
hasBeenUpdated: false,
},
};
}
try {
if (await shim.fsDriver().exists(Setting.value('pluginDir'))) {