mirror of
https://github.com/ppy/osu.git
synced 2025-01-13 07:22:54 +08:00
Fix incorrect HasPassword value for returned rooms
This commit is contained in:
parent
06ac3c1ad3
commit
3df4d1b0e6
@ -179,9 +179,15 @@ namespace osu.Game.Tests.Visual.OnlinePlay
|
|||||||
private Room createResponseRoom(Room room, bool withParticipants)
|
private Room createResponseRoom(Room room, bool withParticipants)
|
||||||
{
|
{
|
||||||
var responseRoom = cloneRoom(room);
|
var responseRoom = cloneRoom(room);
|
||||||
|
|
||||||
|
// Password is hidden from the response, and is only propagated via HasPassword.
|
||||||
|
bool hadPassword = responseRoom.HasPassword.Value;
|
||||||
responseRoom.Password.Value = null;
|
responseRoom.Password.Value = null;
|
||||||
|
responseRoom.HasPassword.Value = hadPassword;
|
||||||
|
|
||||||
if (!withParticipants)
|
if (!withParticipants)
|
||||||
responseRoom.RecentParticipants.Clear();
|
responseRoom.RecentParticipants.Clear();
|
||||||
|
|
||||||
return responseRoom;
|
return responseRoom;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user