mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 07:06:35 +09:00
CI fixes
This commit is contained in:
@ -31,7 +31,7 @@ namespace osu.Game.Overlays
|
||||
get { return users; }
|
||||
set
|
||||
{
|
||||
if (users == value) return;
|
||||
if (users?.Equals(value) ?? false) return;
|
||||
users = value;
|
||||
|
||||
panelFlow.Children = users.Select(u =>
|
||||
|
Reference in New Issue
Block a user