From 2d6cb2a58292e5916aae32d81caa4366921ea268 Mon Sep 17 00:00:00 2001 From: Mirco Wittrien Date: Mon, 27 Jul 2020 18:32:45 +0200 Subject: [PATCH] Update PluginRepo.plugin.js --- Plugins/PluginRepo/PluginRepo.plugin.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Plugins/PluginRepo/PluginRepo.plugin.js b/Plugins/PluginRepo/PluginRepo.plugin.js index 18bc391f7e..6914687320 100644 --- a/Plugins/PluginRepo/PluginRepo.plugin.js +++ b/Plugins/PluginRepo/PluginRepo.plugin.js @@ -563,7 +563,7 @@ var PluginRepo = (_ => { label: "Plugin Repo", id: BDFDB.ContextMenuUtils.createItemId(this.name, "repo"), action: _ => { - if (!loading.is) BDFDB.ContextMenuUtils.close(e.instance); + BDFDB.ContextMenuUtils.close(e.instance); BDFDB.LibraryModules.UserSettingsUtils.open("pluginrepo"); } })); @@ -583,7 +583,7 @@ var PluginRepo = (_ => { element: _ => { let options = Object.assign({}, modalSettings); options.updated = options.updated && !showOnlyOutdated; - options.outdated = options.updated || showOnlyOutdated; + options.outdated = options.outdated || showOnlyOutdated; options.downloadable = options.downloadable && !showOnlyOutdated; options.searchString = ""; options.sortKey = forcedSort || Object.keys(sortKeys)[0];