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
Copy file name to clipboardExpand all lines: livekit-android-sdk/src/main/java/io/livekit/android/room/datastream/incoming/IncomingDataStreamManager.kt
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -248,7 +248,7 @@ class IncomingDataStreamManagerImpl @Inject constructor() : IncomingDataStreamMa
248
248
val openMillis =SystemClock.elapsedRealtime() - descriptor.openTime
249
249
LKLog.d { "Closed stream $id, (open for ${openMillis}ms" }
250
250
251
-
openStreams[id] =null
251
+
openStreams.remove(id)
252
252
}
253
253
}
254
254
@@ -270,7 +270,7 @@ class IncomingDataStreamManagerImpl @Inject constructor() : IncomingDataStreamMa
270
270
val handler = byteStreamHandlers[info.topic]
271
271
{ channel, identity ->
272
272
if (handler ==null) {
273
-
LKLog.i { "Received byte stream for topic \"${info.topic}\", but no handler was found. Ignoring." }
273
+
LKLog.w { "Received byte stream for topic \"${info.topic}\", but no handler was found. Ignoring." }
0 commit comments