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;