Add AirPlay for html audioplayer only if is safari desktop

This commit is contained in:
Georgi Stamatov 2023-05-11 22:27:57 +03:00
parent 90fc207c9e
commit 70f1557086

View file

@ -538,7 +538,7 @@ function getSupportedFeatures() {
list.push('PlaybackRate');
}
if (browser.safari || browser.iOS || browser.iPad) {
if (browser.safari) {
list.push('AirPlay');
}