From df83b4e1b8510ffb470ec0949c62af88b3cfb89d Mon Sep 17 00:00:00 2001 From: sashaweiss-signal Date: Wed, 30 Jul 2025 20:36:44 -0700 Subject: [PATCH] Adjust on-launch storage check --- Signal/AppLaunch/AppDelegate.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Signal/AppLaunch/AppDelegate.swift b/Signal/AppLaunch/AppDelegate.swift index 68421ecd76..b549d9a5dc 100644 --- a/Signal/AppLaunch/AppDelegate.swift +++ b/Signal/AppLaunch/AppDelegate.swift @@ -505,8 +505,8 @@ final class AppDelegate: UIResponder, UIApplicationDelegate { return succeededCreatingDir } - // Require 100MB free in order to launch. - return freeSpaceInBytes >= 100_000_000 + // Require 500MB free in order to launch. + return freeSpaceInBytes >= 500_000_000 } private func setupNSEInteroperation() {