You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-07-13 00:10:37 +02:00
Desktop: Disable built-in copy of Simple Backup by default in Joplin Portable (#9907)
This commit is contained in:
@ -65,6 +65,11 @@ export const getDefaultPluginPathsAndSettings = async (
|
||||
// As such, we recreate the plugin state if necessary.
|
||||
if (!draft[pluginId]) {
|
||||
draft[pluginId] = defaultPluginSetting();
|
||||
|
||||
const enabledByDefault = defaultPluginsInfo[pluginId].enabled;
|
||||
if (typeof enabledByDefault === 'boolean') {
|
||||
draft[pluginId].enabled = enabledByDefault;
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user