From ee14a275a231166322aefb18d12951198e06f4f6 Mon Sep 17 00:00:00 2001 From: recapitalverb <41869184+recapitalverb@users.noreply.github.com> Date: Fri, 14 Feb 2020 22:02:44 +0700 Subject: [PATCH] Make IAPIProvider instances nullable --- osu.Game/Overlays/Settings/Sections/General/LoginSettings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game/Overlays/Settings/Sections/General/LoginSettings.cs b/osu.Game/Overlays/Settings/Sections/General/LoginSettings.cs index b41c7d5afb..c55183772b 100644 --- a/osu.Game/Overlays/Settings/Sections/General/LoginSettings.cs +++ b/osu.Game/Overlays/Settings/Sections/General/LoginSettings.cs @@ -202,7 +202,7 @@ private class LoginForm : FillFlowContainer private TextBox password; private ShakeContainer shakeSignIn; - [Resolved] + [Resolved(CanBeNull = true)] private IAPIProvider api { get; set; } public Action RequestHide;