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

Merge pull request #4688 from dmitrylyzo/fix-macos-alac

This commit is contained in:
Bill Thornton 2023-06-14 13:06:50 -04:00 committed by GitHub
commit 6304e27940
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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') {