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

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)