1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-20 23:23:30 +08:00

Fix incorrect copied room end dates

This commit is contained in:
Dan Balasescu 2022-03-15 11:30:57 +09:00
parent e047413329
commit 4ff6879b85

View File

@ -334,6 +334,10 @@ namespace osu.Game.Screens.OnlinePlay.Lounge
// ID must be unset as we use this as a marker for whether this is a client-side (not-yet-created) room or not.
r.RoomID.Value = null;
// Null out dates because end date is not supported client-side and the settings overlay will populate a duration.
r.EndDate.Value = null;
r.Duration.Value = null;
Open(r);
joiningRoomOperation?.Dispose();