Integration: Fix non-existent session errors preventing displayError from working

This commit is contained in:
Adomas Venčkauskas 2018-06-01 23:26:13 +03:00
parent 2dd0a560b7
commit 547f1c29e3

View File

@ -378,7 +378,8 @@ Zotero.Integration = new function() {
// We do not want to redisplay the progress bar if this window close
// was the final close of the integration command
await Zotero.Promise.delay(10);
if (Zotero.Integration.currentDoc) {
if (Zotero.Integration.currentDoc && Zotero.Integration.currentSession
&& Zotero.Integration.currentSession.progressBar) {
Zotero.Integration.currentSession.progressBar.show();
}
};