Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/fast-teachers-buy.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"server-sdk-kotlin": patch
---

Fix: updateIngress incorrectly sets participantIdentity to null
4 changes: 2 additions & 2 deletions src/main/kotlin/io/livekit/server/IngressServiceClient.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2024 LiveKit, Inc.
* Copyright 2024-2025 LiveKit, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -119,7 +119,7 @@ class IngressServiceClient(
this.roomName = roomName
}

if (participantIdentity == null) {
if (participantIdentity != null) {
this.participantIdentity = participantIdentity
}

Expand Down
Loading