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
You're right. Although the media range grammar doesn't show it, HTTP basic rules allow "linear white space" (LWS) between tokens and separators. Will fix soon in next release.
on version 3.8.1
Per w3 spec, the can be space after semicolon. Eg:
audio/*; q=0.2, audio/basic
In my case, I found it when server returns:
application/json; charset=utf-8
However, current implementation fails on above example.
Probable fix:
([^\s\/]+)\/([^\s+;]+)(?:\+([^\s;]+))?((?:;\s*[^\s;=]+=(?:[^\s";=]+|"(?:[^\"]|\\.)*"))+)?
The text was updated successfully, but these errors were encountered: