From 1b1212c24238e530c46b0dd1e347aa90c8bb762a Mon Sep 17 00:00:00 2001 From: Thorin-Oakenpants Date: Fri, 4 Oct 2024 00:52:04 +0000 Subject: [PATCH] update maxTouchPoints --- js/devices.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/js/devices.js b/js/devices.js index 3666d3c3..c913a945 100644 --- a/js/devices.js +++ b/js/devices.js @@ -28,7 +28,9 @@ function get_maxtouch(METRIC) { } catch(e) { value = e; data = zErrLog } - addBoth(7, METRIC, value,'', (0 == value ? rfp_green : rfp_red), data, isProxyLie('Navigator.'+ METRIC)) + // 1826051: FF132+ 10 except mac + let rfpvalue = (isVer > 131 && 'mac' !== isOS) ? 10 : 0 + addBoth(7, METRIC, value,'', (rfpvalue == value ? rfp_green : rfp_red), data, isProxyLie('Navigator.'+ METRIC)) return }