Throw async error from _loadTranslator()

This commit is contained in:
Dan Stillman 2018-04-19 02:43:32 -04:00
parent 3bc08ba10c
commit 6450d39933

View File

@ -1342,11 +1342,15 @@ Zotero.Translate.Base.prototype = {
Zotero.Promise.resolve(this.translator[0])
.then(function (translator) {
this.translator[0] = translator;
this._loadTranslator(translator).then(() => this._translateTranslatorLoaded());
this._loadTranslator(translator)
.then(() => this._translateTranslatorLoaded())
.catch(e => deferred.reject(e));
}.bind(this));
}
else {
this._loadTranslator(this.translator[0]).then(() => this._translateTranslatorLoaded());
this._loadTranslator(this.translator[0])
.then(() => this._translateTranslatorLoaded())
.catch(e => deferred.reject(e));
}
return deferred.promise;