Skip to content

Commit 2af8be4

Browse files
committed
feat: optimize signal reconnect
1 parent 8b94bb7 commit 2af8be4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

livekit-android-sdk/src/main/java/io/livekit/android/room/SignalClient.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2023-2025 LiveKit, Inc.
2+
* Copyright 2023-2026 LiveKit, Inc.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -190,7 +190,7 @@ constructor(
190190
suspendCancellableCoroutine { cont ->
191191
// Wait for join response through WebSocketListener
192192
joinContinuation = cont
193-
//When a coroutine is canceled, WebSocket must be interrupted.
193+
// When a coroutine is canceled, WebSocket must be interrupted.
194194
cont.invokeOnCancellation {
195195
LKLog.w { "connect cancelled, abort websocket" }
196196
currentWs?.cancel()

0 commit comments

Comments
 (0)