mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 07:06:35 +09:00
One more case
This commit is contained in:
@ -139,7 +139,7 @@ namespace osu.Game.Online.Multiplayer
|
||||
ParticipantCount.Value = other.ParticipantCount.Value;
|
||||
EndDate.Value = other.EndDate.Value;
|
||||
|
||||
if (DateTimeOffset.Now >= EndDate.Value)
|
||||
if (EndDate.Value != null && DateTimeOffset.Now >= EndDate.Value)
|
||||
Status.Value = new RoomStatusEnded();
|
||||
|
||||
if (!Playlist.SequenceEqual(other.Playlist))
|
||||
|
Reference in New Issue
Block a user