mirror of
https://github.com/ppy/osu
synced 2024-12-14 19:06:07 +00:00
Fix condition flipped
This commit is contained in:
parent
22d0b34623
commit
98390ea2a8
@ -328,7 +328,7 @@ namespace osu.Game.Online.Chat
|
||||
{
|
||||
// This request is self-retrying until it succeeds.
|
||||
// To avoid requests piling up when not logged in (ie. API is unavailable) exit early.
|
||||
if (api.IsLoggedIn)
|
||||
if (!api.IsLoggedIn)
|
||||
return;
|
||||
|
||||
var req = new ListChannelsRequest();
|
||||
|
Loading…
Reference in New Issue
Block a user