mirror of
https://github.com/ppy/osu.git
synced 2026-05-23 22:14:52 +08:00
Handle possible nulls.
This commit is contained in:
@@ -44,7 +44,7 @@ namespace osu.Game.Online.Chat
|
||||
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user