mirror of
https://github.com/livekit/livekit.git
synced 2026-04-14 10:55:41 +00:00
Fallback to participant key if base62 is not available (#1223)
This commit is contained in:
@@ -544,7 +544,7 @@ func (r *RedisRouter) handleRTCMessage(rm *livekit.RTCNodeMessage) error {
|
||||
if pKeyB62 != "" {
|
||||
roomName, identity, err = parseParticipantKey(pKeyB62)
|
||||
}
|
||||
if err != nil {
|
||||
if err != nil || pKeyB62 == "" {
|
||||
roomName, identity, err = parseParticipantKeyLegacy(pKey)
|
||||
}
|
||||
if err != nil {
|
||||
|
||||
Reference in New Issue
Block a user