mirror of
https://github.com/osukey/osukey.git
synced 2025-05-31 10:27:26 +09:00
Handle possible nulls.
This commit is contained in:
parent
b9b45493e6
commit
6c9505fa3a
@ -44,7 +44,7 @@ namespace osu.Game.Online.Chat
|
|||||||
|
|
||||||
public int CompareTo(Message other) => Id.CompareTo(other.Id);
|
public int CompareTo(Message other) => Id.CompareTo(other.Id);
|
||||||
|
|
||||||
public bool Equals(Message other) => Id == other.Id;
|
public bool Equals(Message other) => Id == other?.Id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public enum TargetType
|
public enum TargetType
|
||||||
|
Loading…
x
Reference in New Issue
Block a user