fix "this._streams is undefined" in translate.js
This commit is contained in:
parent
f14a5e05fa
commit
520a89a330
1 changed files with 1 additions and 1 deletions
|
@ -1994,7 +1994,7 @@ Zotero.Translate.prototype._importConfigureIO = function(charset) {
|
||||||
sStream = Components.classes["@mozilla.org/scriptableinputstream;1"]
|
sStream = Components.classes["@mozilla.org/scriptableinputstream;1"]
|
||||||
.createInstance(Components.interfaces.nsIScriptableInputStream);
|
.createInstance(Components.interfaces.nsIScriptableInputStream);
|
||||||
sStream.init(me._inputStream);
|
sStream.init(me._inputStream);
|
||||||
this._streams.push(sStream);
|
me._streams.push(sStream);
|
||||||
}
|
}
|
||||||
|
|
||||||
// read from the scriptable input stream
|
// read from the scriptable input stream
|
||||||
|
|
Loading…
Reference in a new issue