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

Disable ALAC on MacOS in non-Safari browsers

This commit is contained in:
Dmitry Lyzo 2023-06-13 20:11:23 +03:00
parent eab36f9934
commit 7ada8796a7

View file

@ -130,7 +130,7 @@ import browser from './browser';
typeString = 'audio/ogg; codecs="opus"';
} else if (format === 'alac') {
if (browser.iOS || browser.osx) {
if (browser.iOS || browser.osx && browser.safari) {
return true;
}
} else if (format === 'mp2') {