From edcf9af11d1673c4cd59b73bd92ddba077abd80f Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Thu, 12 Oct 2023 23:05:29 +0300 Subject: [PATCH] Update memory limit warning in health check --- lib/ui/app/dialogs/health_check_dialog.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ui/app/dialogs/health_check_dialog.dart b/lib/ui/app/dialogs/health_check_dialog.dart index d75a8cda5..7efc1aa05 100644 --- a/lib/ui/app/dialogs/health_check_dialog.dart +++ b/lib/ui/app/dialogs/health_check_dialog.dart @@ -198,11 +198,11 @@ class _HealthCheckDialogState extends State { */ if (!state.account.isDocker && phpMemoryLimitDouble! > 100 && - phpMemoryLimitDouble < 512) + phpMemoryLimitDouble < 1024) _HealthListTile( title: 'PHP memory limit is too low', subtitle: - 'Increase the limit to at least 512M to support the in-app update', + 'Increase the limit to 1024M to support the in-app update', level: _HealthCheckLevel.Warning, ), if (_response!.queue == 'sync')