From 68d756b3d156cee29c9749b5b378ef83b9ad7248 Mon Sep 17 00:00:00 2001 From: Evan Kaloudis Date: Sun, 3 May 2026 19:53:05 -0400 Subject: [PATCH] fix: respect disableOfflineCheck setting on ConnectivityStore.start() --- stores/ConnectivityStore.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stores/ConnectivityStore.ts b/stores/ConnectivityStore.ts index 20ac5b709..3c2850f35 100644 --- a/stores/ConnectivityStore.ts +++ b/stores/ConnectivityStore.ts @@ -91,6 +91,8 @@ export default class ConnectivityStore { @action public start = () => { if (this.netInfoUnsubscribe) return; + if (this.settingsStore.settings?.networking?.disableOfflineCheck) + return; NetInfo.configure({ reachabilityUrl: this.getReachabilityUrl(),