Fix _runHandler error. This does not fix the hang in PDF metaata retrieval.
This commit is contained in:
parent
aa07db50a1
commit
335395f05f
|
@ -849,7 +849,7 @@ Zotero.Translate.Base.prototype = {
|
||||||
args.push(arguments[i]);
|
args.push(arguments[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
for(var i=0, n=this._handlers[type].length; i<n; i++) {
|
for(var i=0; i<this._handlers[type].length; i++) {
|
||||||
Zotero.debug("Translate: Running handler "+i+" for "+type, 5);
|
Zotero.debug("Translate: Running handler "+i+" for "+type, 5);
|
||||||
try {
|
try {
|
||||||
returnValue = this._handlers[type][i].apply(null, args);
|
returnValue = this._handlers[type][i].apply(null, args);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user