Make appveyor happy.

This commit is contained in:
Lucas A
2019-05-05 21:32:23 +02:00
parent 3d8b56fe57
commit a50bbf7f42
6 changed files with 7 additions and 13 deletions

View File

@ -64,15 +64,15 @@ namespace osu.Game.Screens
/// </summary>
protected UserActivity ScreenActivity
{
get => activity;
set
{
if (value == null) return;
if (value == activity) return;
if (api == null) return;
activity = value;
api.LocalUser.Value.Activity.Value = activity;
}
get => activity;
}
private UserActivity activity;