1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-21 14:59:59 +08:00

Merge pull request #1883 from peppy/fix-incorrect-conditional

Fix incorrect online conditional check in social browser logic
This commit is contained in:
Dan Balasescu 2018-01-12 18:53:41 +09:00 committed by GitHub
commit a526d05ef4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -155,7 +155,7 @@ namespace osu.Game.Overlays
loading.Hide();
getUsersRequest?.Cancel();
if (api?.IsLoggedIn == false)
if (api?.IsLoggedIn != true)
return;
switch (Header.Tabs.Current.Value)