You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 9, 2024. It is now read-only.
When trying to browserify ytsr, I noticed that the way ytsr makes http requests, while correct, is not supported by stream-http, the "shim" used by webpack and browserify to mimick the nodejs module.
When trying to browserify ytsr, I noticed that the way ytsr makes http requests, while correct, is not supported by stream-http, the "shim" used by webpack and browserify to mimick the nodejs module.
I reported a bug to them: jhiesey/stream-http#116
A small change would make it compatible. In utils.js, replace:
const request = HTTPS.get(ref, options, resp => {
With
Would that be ok for you?
The text was updated successfully, but these errors were encountered: