1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Merge pull request #2470 from pgeorgi/fix-cros

browser.js: Avoid misdetecting Chrome OS as OS X
This commit is contained in:
dkanada 2021-03-06 14:05:13 +09:00 committed by GitHub
commit 8d01ed530e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -210,7 +210,7 @@ if (!browser.chrome && !browser.edgeChromium && !browser.edge && !browser.opera
browser.safari = true; browser.safari = true;
} }
browser.osx = userAgent.toLowerCase().indexOf('os x') !== -1; browser.osx = userAgent.toLowerCase().indexOf('mac os x') !== -1;
// This is a workaround to detect iPads on iOS 13+ that report as desktop Safari // This is a workaround to detect iPads on iOS 13+ that report as desktop Safari
// This may break in the future if Apple releases a touchscreen Mac // This may break in the future if Apple releases a touchscreen Mac