Integration: Fix non-existent session errors preventing displayError from working
This commit is contained in:
parent
2dd0a560b7
commit
547f1c29e3
|
@ -378,7 +378,8 @@ Zotero.Integration = new function() {
|
||||||
// We do not want to redisplay the progress bar if this window close
|
// We do not want to redisplay the progress bar if this window close
|
||||||
// was the final close of the integration command
|
// was the final close of the integration command
|
||||||
await Zotero.Promise.delay(10);
|
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();
|
Zotero.Integration.currentSession.progressBar.show();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue
Block a user