Skip to content

Commit 639a63f

Browse files
authored
Merge pull request #5913 from decentraland/hotfix/2025-10-22
hotfix: fixed issue with orchestrator current service
2 parents d3ade4f + 5b1df3a commit 639a63f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Explorer/Assets/DCL/VoiceChat/VoiceChatOrchestrator.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,9 @@ private void OnPrivateVoiceChatUpdateReceived(PrivateVoiceChatUpdate update)
173173
{
174174
if (currentVoiceChatType.Value != VoiceChatType.COMMUNITY)
175175
{
176-
SetActiveCallService(VoiceChatType.PRIVATE);
177176
privateVoiceChatCallStatusService.OnPrivateVoiceChatUpdateReceived(update);
177+
if (update.Status is not (PrivateVoiceChatStatus.VoiceChatEnded or PrivateVoiceChatStatus.VoiceChatExpired or PrivateVoiceChatStatus.VoiceChatRejected))
178+
SetActiveCallService(VoiceChatType.PRIVATE);
178179
}
179180
}
180181

0 commit comments

Comments
 (0)