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 was archived by the owner on Dec 28, 2024. It is now read-only.
It seems that e7ef3ae#diff-3005a2eaefe34d5d0afb8d08687f8aaeR394 has broken protocol relative url in src like
"//img.youtube.com/vi/18OXnzrw1V1/maxresdefault.jpg" is e.g. resolved to "http://localhost//img.youtube.com/vi/18OXnzrw1V1/maxresdefault.jpg"
expected: the value of a protocol relative src url should not be changed
the following change fixed the issue for me:
if (resolved[0] === '/')toif (resolved[0] === '/' && resolved.indexOf('//') != 0)