fix comments

This commit is contained in:
Timo K
2026-01-14 12:29:22 +01:00
parent 4d35b77077
commit 41eb45b3c4
2 changed files with 2 additions and 1 deletions

View File

@@ -148,6 +148,7 @@ export function areLivekitTransportsEqual<T extends LivekitTransport>(
t1.livekit_service_url === t2.livekit_service_url &&
// In case we have different lk rooms in the same SFU (depends on the livekit authorization service)
// It is only needed in case the livekit authorization service is not behaving as expected (or custom implementation)
// Also LivekitTransport is planned to become a `ConnectionIdentifier` which moves this equal somewhere else.
t1.livekit_alias === t2.livekit_alias
);
if (!t1 && !t2) return true;