remove null conditional

This commit is contained in:
LeNitrous 2019-09-09 06:14:49 +08:00
parent a67a2899a9
commit be4f0cc2dd
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ public override void OnEntering(IScreen last)
}
}
if (last is IntroScreen && api?.State == APIState.Offline)
if (last is IntroScreen && api.State == APIState.Offline)
login?.ToggleVisibility();
Beatmap.ValueChanged += beatmap_ValueChanged;