From d25a730768b8aedbea151e07c3fbeb965742ed48 Mon Sep 17 00:00:00 2001 From: wukko Date: Sun, 29 Jun 2025 13:41:42 +0600 Subject: [PATCH] web/device: enable local processing everywhere but android chrome --- web/src/lib/device.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/web/src/lib/device.ts b/web/src/lib/device.ts index a5cbc324..417ad945 100644 --- a/web/src/lib/device.ts +++ b/web/src/lib/device.ts @@ -83,10 +83,8 @@ if (browser) { // so they're enabled only on ios 18+ for now haptics: modernIOS, - // enable local processing by default on - // desktop, ios, and firefox on android - defaultLocalProcessing: !device.is.mobile || iOS || - (device.is.android && !device.browser.chrome), + // enable local processing by default everywhere but android chrome + defaultLocalProcessing: !(device.is.android && device.browser.chrome), }; device.userAgent = navigator.userAgent;