This isn't FULLY functional, but it's what I've made thus far... I'm still working on a Ice Disconnect somewhere at least for me - welcome to test.

This commit is contained in:
2026-04-18 18:05:22 -04:00
parent b70189c619
commit a2608ffab9
8 changed files with 300 additions and 272 deletions

View File

@@ -610,11 +610,11 @@ public partial class MainPage : ContentPage
Console.WriteLine($"[{_username}] sent RTC signal: {rtcSignal.Type} -> {rtcSignal.ChannelId}");
} //Remove?
//public async Task<string> GetRtcParticipants() // TODO: UNCOMMENT AND ADD
//{
// var participants = await ServerAPI.GetRtcParticipantsAsync(_currentChannelId);
// return JsonSerializer.Serialize(participants);
//}
public async Task<string> GetRtcParticipants()
{
var participants = await ServerAPI.GetRtcParticipantsAsync(_currentChannelId);
return JsonSerializer.Serialize(participants);
}
#endregion
private void OnSendMessageButtonClicked(object sender, EventArgs e)