Word plugin installer: don't show progress window on repeat attempts to install (#4579)
Some checks are pending
CI / Build, Upload, Test (push) Waiting to run

This commit is contained in:
Adomas Venčkauskas 2024-08-19 14:52:40 +03:00 committed by Dan Stillman
parent 3d0b5d0099
commit 06eb1d7341

View file

@ -104,7 +104,7 @@ ZoteroPluginInstaller.prototype = {
} }
installationInProgress = true; installationInProgress = true;
try { try {
if (!this._addon.DISABLE_PROGRESS_WINDOW) { if (!this._addon.DISABLE_PROGRESS_WINDOW && !this.failSilently) {
this._progressWindow = Components.classes["@mozilla.org/embedcomp/window-watcher;1"] this._progressWindow = Components.classes["@mozilla.org/embedcomp/window-watcher;1"]
.getService(Components.interfaces.nsIWindowWatcher) .getService(Components.interfaces.nsIWindowWatcher)
.openWindow(null, "chrome://zotero/content/progressWindow.xhtml", '', .openWindow(null, "chrome://zotero/content/progressWindow.xhtml", '',