Skip to content
Snippets Groups Projects
Verified Commit 25f4b10f authored by Morgan Bazalgette's avatar Morgan Bazalgette Committed by Haelwenn
Browse files

handle empty message (ping) in ws

parent c2c9651e
No related branches found
No related tags found
No related merge requests found
......@@ -74,7 +74,10 @@ export default function getStream(streamingAPIBaseURL, accessToken, stream, { co
const ws = new WebSocketClient(`${streamingAPIBaseURL}/api/v1/streaming/?${params.join('&')}`);
ws.onopen = connected;
ws.onmessage = e => received(JSON.parse(e.data));
ws.onmessage = e => {
if (e.data !== '')
received(JSON.parse(e.data));
}
ws.onclose = disconnected;
ws.onreconnect = reconnected;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment