fireunit
fireunit copied to clipboard
Compatibility of httpd.js with Firefox 3.6
Hi,
It looks like nsIAsyncStreamCopier.init() now requires two more arguments.
So inside the "httpd.js" script you should replace :
var copier = new StreamCopier(bodyStream, outStream, null, true, true, 8192);
With:
var copier = new StreamCopier(bodyStream, outStream, null, true, true, 8192, true, true);