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
i have this problem with EventSourcePolyfill , when i create new notification it doesn't receive any thing but after some number of notifications it receive the previous notifications but also it get truncated
`import { EventSourcePolyfill } from 'event-source-polyfill';
i have this problem with EventSourcePolyfill , when i create new notification it doesn't receive any thing but after some number of notifications it receive the previous notifications but also it get truncated
`import { EventSourcePolyfill } from 'event-source-polyfill';
@Injectable({
providedIn: 'root'
})
getStream(): Observable {
}`
and this is how i call it
this.streamService.getStream().subscribe((data: any) => { const notification = JSON.parse(data); console.log(data); });
The text was updated successfully, but these errors were encountered: