From 520a89a3304a5ccf848ae4e736fd551e7da951d1 Mon Sep 17 00:00:00 2001 From: Simon Kornblith Date: Fri, 17 Jul 2009 20:29:30 +0000 Subject: [PATCH] fix "this._streams is undefined" in translate.js --- chrome/content/zotero/xpcom/translate.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/translate.js b/chrome/content/zotero/xpcom/translate.js index 428afd57a..d363a7a2c 100644 --- a/chrome/content/zotero/xpcom/translate.js +++ b/chrome/content/zotero/xpcom/translate.js @@ -1994,7 +1994,7 @@ Zotero.Translate.prototype._importConfigureIO = function(charset) { sStream = Components.classes["@mozilla.org/scriptableinputstream;1"] .createInstance(Components.interfaces.nsIScriptableInputStream); sStream.init(me._inputStream); - this._streams.push(sStream); + me._streams.push(sStream); } // read from the scriptable input stream