From a56e1e02ca9d99d7f81c28b3ec11e887dc4e8da4 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Tue, 13 Dec 2022 09:48:53 +0200 Subject: [PATCH] Show update notification to docker installs --- lib/ui/app/menu_drawer.dart | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/ui/app/menu_drawer.dart b/lib/ui/app/menu_drawer.dart index 4212627fd..2642f1cb4 100644 --- a/lib/ui/app/menu_drawer.dart +++ b/lib/ui/app/menu_drawer.dart @@ -1015,7 +1015,6 @@ class SidebarFooter extends StatelessWidget { ) else if (state.isSelfHosted && !state.account.disableAutoUpdate && - !state.account.isDocker && state.isUpdateAvailable) IconButton( tooltip: prefState.enableTooltips @@ -1517,7 +1516,7 @@ void _showAbout(BuildContext context) async { }, ), if (!state.account.disableAutoUpdate && - !state.account.isDocker) + (!state.account.isDocker || state.isUpdateAvailable)) AppButton( label: (state.isUpdateAvailable ? localization.updateApp