mirror of
https://github.com/ppy/osu
synced 2024-12-28 09:52:56 +00:00
Fix backwards containment check in chat channel load callback
This commit is contained in:
parent
12da27cde7
commit
a5b07ce4fe
@ -285,7 +285,7 @@ namespace osu.Game.Overlays
|
||||
return;
|
||||
|
||||
// check once more to ensure the channel hasn't since been removed from the loaded channels list (may have been left by some automated means).
|
||||
if (loadedChannels.Contains(loaded))
|
||||
if (!loadedChannels.Contains(loaded))
|
||||
return;
|
||||
|
||||
loading.Hide();
|
||||
|
Loading…
Reference in New Issue
Block a user