feross / simple-peer

📡 Simple WebRTC video, voice, and data channels

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

stream channel not working when data channel is used along with stream channel

yugkha3 opened this issue · comments

peers[connectedUserSocketID].on('stream', (stream) => {
		streams.set(connectedUserSocketID, stream);
		store.dispatch(setStreams({ connectedUserSocketID }));
	});

When i only use the above event listner 'stream' everything works fine. But when I use both the below 'stream' and 'data' event listners the 'stream' event does not trigger properly. Here's the code with both stream listners:

peers[connectedUserSocketID].on('stream', (stream) => {
		streams.set(connectedUserSocketID, stream);
		store.dispatch(setStreams({ connectedUserSocketID }));
	});
peers[connectedUserSocketID].on('data', (data) => {
		const messageData = JSON.parse(data);
		appendMessage(messageData);
	})

I've got the same problem. Have you got it fixed yet?🤣

I've got the same problem. Have you got it fixed yet?🤣

no man, wbu?

I have the same problem too.