Fix condition flipped

This commit is contained in:
Salman Ahmed
2023-01-09 21:33:04 +03:00
parent 22d0b34623
commit 98390ea2a8

View File

@ -328,7 +328,7 @@ namespace osu.Game.Online.Chat
{ {
// This request is self-retrying until it succeeds. // This request is self-retrying until it succeeds.
// To avoid requests piling up when not logged in (ie. API is unavailable) exit early. // To avoid requests piling up when not logged in (ie. API is unavailable) exit early.
if (api.IsLoggedIn) if (!api.IsLoggedIn)
return; return;
var req = new ListChannelsRequest(); var req = new ListChannelsRequest();