fireunit icon indicating copy to clipboard operation
fireunit copied to clipboard

Compatibility of httpd.js with Firefox 3.6

Open LePhasme opened this issue 16 years ago • 0 comments

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);

LePhasme avatar Mar 03 '10 17:03 LePhasme