bugfix: add null-check in View-Setter method

This commit is contained in:
alexiscatnip
2022-08-06 02:43:06 +08:00
committed by alexiscatnip
parent fbb2b946a6
commit 6308797892
@@ -130,6 +130,8 @@ namespace Raindrop.UI.Login
private void SetLoginButtonVisibilty(bool _)
{
if (LoginButton == null)
return;
LoginButton.interactable = _;
}