Update PluginRepo.plugin.js

This commit is contained in:
Mirco Wittrien 2019-04-05 21:07:31 +02:00
parent 8f0875e084
commit a88108f5fe
1 changed files with 1 additions and 1 deletions

View File

@ -706,7 +706,7 @@ class PluginRepo {
var instPlugin = window.bdplugins[plugin.getName] ? window.bdplugins[plugin.getName].plugin : null;
if (instPlugin && this.getString(instPlugin.getAuthor()).toUpperCase() == plugin.getAuthor.toUpperCase() && this.getString(instPlugin.getVersion()) != plugin.getVersion && PluginUpdates && PluginUpdates.plugins && !PluginUpdates.plugins[url]) outdated++;
}
else {
else if (webview && typeof webview.getWebContents == "function") {
webviewqueue.push({body, url});
runInWebview();
}