Updated, the update... should be working now hopefully...
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user