From 80da9142f1f1649737bd862c3989624cceaf0963 Mon Sep 17 00:00:00 2001 From: Herculino Trotta Date: Sun, 15 Feb 2026 23:36:23 -0300 Subject: [PATCH] fix: pulltorefresh enabled globally --- frontend/src/js/pulltorefresh.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/js/pulltorefresh.js b/frontend/src/js/pulltorefresh.js index bf4e35d..927bd71 100644 --- a/frontend/src/js/pulltorefresh.js +++ b/frontend/src/js/pulltorefresh.js @@ -6,7 +6,7 @@ const isIosPwa = () => { const ua = window.navigator.userAgent.toLowerCase(); const isIos = /iphone|ipad|ipod/.test(ua) || (navigator.platform === 'MacIntel' && navigator.maxTouchPoints > 1); const isStandalone = window.navigator.standalone === true || window.matchMedia('(display-mode: standalone)').matches; - return true || isIos && isStandalone; + return isIos && isStandalone; }; const ptrMarkup = `