Fixed Messaging Bug (inversed a if statement)
This commit is contained in:
@@ -1,5 +1,11 @@
|
||||
using SurrealDb.Net.Models;
|
||||
|
||||
#region Resharper Stuff
|
||||
// ReSharper disable ClassNeverInstantiated.Global
|
||||
// ReSharper disable PropertyCanBeMadeInitOnly.Global
|
||||
// ReSharper disable InconsistentNaming
|
||||
#endregion
|
||||
|
||||
namespace RelayShared.Rtc;
|
||||
|
||||
public enum SignalType
|
||||
@@ -121,8 +127,8 @@ public sealed class RtcAnswer
|
||||
public RtcSessionDescription SessionDescription { get; set; } = new();
|
||||
}
|
||||
|
||||
public class DBIceCandidate : Record //TODO: Swap names with DBIceCandidate.
|
||||
{ //TODO: Update all Record extensions to be DB*, all communication objects to be Rtc*
|
||||
public class DBIceCandidate : Record
|
||||
{
|
||||
public required string ChannelId { get; set; }
|
||||
public required string Username { get; set; }
|
||||
public required string Candidate { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user