Fix Firefox 3.6 compatibility
This commit is contained in:
parent
dd05b26dcc
commit
7152c71e84
1 changed files with 1 additions and 1 deletions
|
@ -485,7 +485,7 @@ Zotero.IPC.Pipe.Poll.prototype = {
|
||||||
// clear file
|
// clear file
|
||||||
var foStream = Components.classes["@mozilla.org/network/file-output-stream;1"].
|
var foStream = Components.classes["@mozilla.org/network/file-output-stream;1"].
|
||||||
createInstance(Components.interfaces.nsIFileOutputStream);
|
createInstance(Components.interfaces.nsIFileOutputStream);
|
||||||
foStream.init(_fifoFile, 0x02 | 0x08 | 0x20, 0666, 0);
|
foStream.init(this._file, 0x02 | 0x08 | 0x20, 0666, 0);
|
||||||
foStream.close();
|
foStream.close();
|
||||||
}
|
}
|
||||||
};
|
};
|
Loading…
Reference in a new issue