X-Git-Url: https://git.josue.xyz/?a=blobdiff_plain;f=_webi%2Fua-detect.js;h=6b972cb914b6b27e610027c19ee18a0d38f0860a;hb=4edf137e5d6b65f9ac847db6694ac387c7e91f3e;hp=426db69615e15ed13c686b5afdb17ad1c8e37376;hpb=0245e830a43cdd4a76b0b7181c2e12343786ee8f;p=webi-installers%2F.git diff --git a/_webi/ua-detect.js b/_webi/ua-detect.js index 426db69..6b972cb 100644 --- a/_webi/ua-detect.js +++ b/_webi/ua-detect.js @@ -54,10 +54,10 @@ function getArch(ua) { return '-'; } - // quick hack for Apple Silicon M1 + // quick hack for Apple Silicon M1 // Native: Darwin boomer.local 20.2.0 Darwin Kernel Version 20.2.0: Wed Dec 2 20:40:21 PST 2020; root:xnu-7195.60.75~1/RELEASE_ARM64_T8101 arm64 // Resetta: Darwin boomer.local 20.2.0 Darwin Kernel Version 20.2.0: Wed Dec 2 20:40:21 PST 2020; root:xnu-7195.60.75~1/RELEASE_ARM64_T8101 x86_64 - ua = ua.replace(/xnu-.*RELEASE_[^\s]*/, '') + ua = ua.replace(/xnu-.*RELEASE_[^\s]*/, ''); if (/aarch64|arm64|arm8|armv8/i.test(ua)) { return 'arm64'; } else if (/aarch|arm7|armv7/i.test(ua)) {