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 May 5, 2023. It is now read-only.
With a datauri like data:text/plain;,text, and the library parsing it, it results in .typeFull equalling text/plain;;charset=US-ASCII (instead of text/plain;charset=US-ASCII).
With a datauri like data:;,text, and the library parsing it, it results in .typeFull equalling text/plain; (instead of text/plain).
( I do think that they are valid datauris because browsers return what you'd expect, for example data:text/html;;,<h1>Hello</h1> showing a huge Hello )
Replacing this line with } else if(meta[i]) { fixed it for me.
The text was updated successfully, but these errors were encountered:
With a datauri like
data:text/plain;,text
, and the library parsing it, it results in.typeFull
equallingtext/plain;;charset=US-ASCII
(instead oftext/plain;charset=US-ASCII
).With a datauri like
data:;,text
, and the library parsing it, it results in.typeFull
equallingtext/plain;
(instead oftext/plain
).( I do think that they are valid datauris because browsers return what you'd expect, for example
data:text/html;;,<h1>Hello</h1>
showing a huge Hello )Replacing this line with
} else if(meta[i]) {
fixed it for me.The text was updated successfully, but these errors were encountered: