Merge pull request #6749 from iiSaLMaN/fix-dummy-api-logged-in-not-correct

Fix DummyAPIAccess.IsLoggedIn returning incorrect values
This commit is contained in:
Dean Herbert 2019-11-07 09:31:46 +09:00 committed by GitHub
commit eaf2123142
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,7 +19,7 @@ namespace osu.Game.Online.API
public Bindable<UserActivity> Activity { get; } = new Bindable<UserActivity>();
public bool IsLoggedIn => true;
public bool IsLoggedIn => State == APIState.Online;
public string ProvidedUsername => LocalUser.Value.Username;