From f7e5951410d447af9b3f191acfe39cddd356deea Mon Sep 17 00:00:00 2001 From: wukko Date: Wed, 25 Jun 2025 23:19:24 +0600 Subject: [PATCH] web/lib/device: enable local processing on all ios devices --- web/src/lib/device.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/src/lib/device.ts b/web/src/lib/device.ts index 9b931713..a9686024 100644 --- a/web/src/lib/device.ts +++ b/web/src/lib/device.ts @@ -84,8 +84,8 @@ if (browser) { haptics: modernIOS, // enable local processing by default on - // desktop, ios 18+, and firefox on android - defaultLocalProcessing: !device.is.mobile || modernIOS || + // desktop, ios, and firefox on android + defaultLocalProcessing: !device.is.mobile || iOS || (device.is.android && !device.browser.chrome), };