This commit is contained in:
Mirco Wittrien 2020-06-04 19:48:11 +02:00
parent d43c6d281a
commit 1405088e32
2 changed files with 2 additions and 2 deletions

View File

@ -520,7 +520,7 @@ var PluginRepo = (_ => {
this.deletePluginFile(plugin);
BDFDB.TimeUtils.timeout(_ => {
this.updateList(instance, options);
if (!BDFDB.BDUtils.isAutoLoadEnabled()) this.stopPlugin(plugin);
this.stopPlugin(plugin);
}, 3000);
}
})

View File

@ -714,7 +714,7 @@ var ThemeRepo = (_ => {
this.deleteThemeFile(theme);
BDFDB.TimeUtils.timeout(_ => {
this.updateList(instance, options);
if (!BDFDB.BDUtils.isAutoLoadEnabled()) this.removeTheme(theme);
this.removeTheme(theme);
}, 3000);
}
})