Use more compact optional chaining and coalescing notation

This commit is contained in:
Robin
2025-12-08 23:38:15 -05:00
parent 9481dc401c
commit 2f3f9f95eb

View File

@@ -60,11 +60,7 @@ export class ConnectionManagerData {
transport: LivekitTransport,
): (LocalParticipant | RemoteParticipant)[] {
const key = transport.livekit_service_url + "|" + transport.livekit_alias;
const existing = this.store.get(key);
if (existing) {
return existing[1];
}
return [];
return this.store.get(key)?.[1] ?? [];
}
/**
* Get all connections where the given participant is publishing.