From 7db184466a53b6817cd97bc6e8de0f1ddb5587f0 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Sun, 3 Jul 2022 18:34:30 +0300 Subject: [PATCH] =?UTF-8?q?Check=20update=20isn=E2=80=99t=20shown=20if=20i?= =?UTF-8?q?nstalled=20with=20Softaculous?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/ui/app/menu_drawer.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/ui/app/menu_drawer.dart b/lib/ui/app/menu_drawer.dart index 52cb44551..8439813bd 100644 --- a/lib/ui/app/menu_drawer.dart +++ b/lib/ui/app/menu_drawer.dart @@ -877,7 +877,9 @@ class SidebarFooter extends StatelessWidget { clearErrorOnDismiss: true, ), ) - else if (state.isSelfHosted && state.isUpdateAvailable) + else if (state.isSelfHosted && + !state.account.disableAutoUpdate && + state.isUpdateAvailable) IconButton( tooltip: prefState.enableTooltips ? localization.updateAvailable