fix import of non-RDF files, broken by last commit

This commit is contained in:
Simon Kornblith 2011-03-16 22:56:12 +00:00
parent 402fa961ef
commit 03be861eff

View File

@ -400,8 +400,10 @@ Zotero.Translate.IO.Read.prototype = {
var myIndex = Zotero.Translate.IO.maintainedInstances.indexOf(this);
if(myIndex !== -1) Zotero.Translate.IO.maintainedInstances.splice(myIndex, 1);
this._rawStream.close();
delete this._rawStream;
if(this._rawStream) {
this._rawStream.close();
delete this._rawStream;
}
}
}
Zotero.Translate.IO.Read.prototype.__defineGetter__("contentLength",