Replies: 1 comment
-
Hello @itslenny Can you please share the code snippet you are using, I am not active in the community so not aware about the latest update in the SDK. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I've created a very simple conference call app following the examples found in
conference.html
andconference-room.html
and every time I callplay()
I get theno_stream_exist
error. Everything starts correctly and works, but this error keeps persisting and I can't figure out how to get it to not happen.I'm using the JavaScript SDK and using the following code
I also tried adding an interval that calls
rtcAdapter.getRoomInfo(roomId, streamId)
every 5 seconds, and callingrtcAdapter.play(roomId, '', roomId)
the first time theroomInformation
callback fired, but it didn't make any difference (this idea was taken from the code in theconference-room.html
example, but it doesn't seem to change anything.The
streamId
that is in theno_stream_exist
error is the roomId provided when joining the room / calling play.The error does not happen if I don't call
play()
, but I also don't get any remote tracks/streams if I don't call play.I've also tried swapping
roomId
forstreamId
in both places in the play call. Changing the first parameter results in an RTC error and connection failure. Changing the second one doesn't seem to change anything.Beta Was this translation helpful? Give feedback.
All reactions