Update: Seems everything is working now?

This commit is contained in:
2026-05-25 01:06:19 -04:00
parent 1ed3efcc68
commit cd2d809322
6 changed files with 532 additions and 486 deletions

View File

@@ -31,7 +31,7 @@ public sealed class RtcBridgeService
if (string.IsNullOrWhiteSpace(channelId))
return Task.CompletedTask;
_socket.SendRaw($"RTC_JOIN_CHANNEL|{_username}|{channelId}");
_socket.SendRtcJoinChannel(channelId);
return Task.CompletedTask;
}
@@ -42,7 +42,7 @@ public sealed class RtcBridgeService
if (string.IsNullOrWhiteSpace(channelId))
return;
_socket.SendRaw($"RTC_LEAVE_CHANNEL|{_username}|{channelId}");
_socket.SendRtcLeaveChannel(channelId);
}
public void SendRtcSignal(string json)