EventSource icon indicating copy to clipboard operation
EventSource copied to clipboard

Invalid content-type regexp

Open sekaijin opened this issue 4 years ago • 0 comments

Hi line 127: var contentTypeRegExp = /^text\/event\-stream;?(\s*charset\=utf\-8)?$/i;

but the server can send text/event-stream;element-type="application/json" or others types of elements.

;?(\s*charset\=utf\-8)? is not used in your code. I suggest to relax the constraint whith /^text\/event\-stream;?.*$/i; or add support of more complex content-type

sekaijin avatar Mar 31 '20 13:03 sekaijin