aadsm / jsmediatags

Media Tags Reader (ID3, MP4, FLAC)
Other
748 stars 128 forks source link

_createXHRObject Error in Web Worker #65

Closed ghost closed 7 years ago

ghost commented 7 years ago

_createXHRObject Error in Web Worker

Can be simply fixed:

function _createXHRObject() { return new XMLHttpRequest();
};

But this would disable node XHR2

ghost commented 7 years ago

And if you want to require XHR2, then this is the right way:

var NXMLHttpRequest = require('xhr2'); var xhr = new NXMLHttpRequest();

return xhr;