fx115: Fix word plugin installer not throwing on failure
This commit is contained in:
parent
dca7dcccab
commit
75aade6422
1 changed files with 2 additions and 2 deletions
|
@ -234,10 +234,10 @@ ZoteroPluginInstaller.prototype = {
|
|||
var me = this;
|
||||
setTimeout(function() {
|
||||
me._progressWindow.focus();
|
||||
setTimeout(function() {
|
||||
setTimeout(async function() {
|
||||
me._progressWindow.focus();
|
||||
try {
|
||||
me._addon.install(me);
|
||||
await me._addon.install(me);
|
||||
} catch(e) {
|
||||
me.error();
|
||||
throw e;
|
||||
|
|
Loading…
Reference in a new issue