From 7720dd8abd2ae6ab11d68aadeae472f2df6f2c33 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Tue, 18 Oct 2022 09:23:25 +0300 Subject: [PATCH] =?UTF-8?q?Make=20sure=20upgrade=20isn=E2=80=99t=20shown?= =?UTF-8?q?=20to=20selfhosters=20on=20Apple?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/ui/auth/login_view.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ui/auth/login_view.dart b/lib/ui/auth/login_view.dart index 0f160579c..0c390693d 100644 --- a/lib/ui/auth/login_view.dart +++ b/lib/ui/auth/login_view.dart @@ -626,7 +626,7 @@ class _LoginState extends State { ), if (!_isSelfHosted && !_recoverPassword && - (!isApple() || supportsInAppPurchase()) && + !isMacOS() && // TODO remove once IAP macOS is supported (!kIsWeb || state.authState.isHosted)) Padding( padding: const EdgeInsets.only(top: 6, bottom: 10),