mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-10 09:07:48 +01:00
Fix double duration on all Apple devices
The fix will be applied when Safari browser is detected.
This commit is contained in:
parent
685902adab
commit
a6970e02f9
1 changed files with 2 additions and 15 deletions
|
@ -548,9 +548,9 @@ if (player.share) {
|
||||||
player.share(shareOptions);
|
player.share(shareOptions);
|
||||||
}
|
}
|
||||||
|
|
||||||
//iOS audio double duration fix
|
// Safari audio double duration fix
|
||||||
player.on('loadedmetadata', function () {
|
player.on('loadedmetadata', function () {
|
||||||
if (iOS() && video_data.params.listen) {
|
if (navigator.vendor == "Apple Computer, Inc." && video_data.params.listen) {
|
||||||
player.on('timeupdate', function () {
|
player.on('timeupdate', function () {
|
||||||
if (player.remainingTime() < player.duration() / 2) {
|
if (player.remainingTime() < player.duration() / 2) {
|
||||||
player.currentTime(player.duration() + 1);
|
player.currentTime(player.duration() + 1);
|
||||||
|
@ -558,16 +558,3 @@ player.on('loadedmetadata', function () {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
function iOS() {
|
|
||||||
return [
|
|
||||||
'iPad Simulator',
|
|
||||||
'iPhone Simulator',
|
|
||||||
'iPod Simulator',
|
|
||||||
'iPad',
|
|
||||||
'iPhone',
|
|
||||||
'iPod'
|
|
||||||
].includes(navigator.platform)
|
|
||||||
// iPad on iOS 13 detection
|
|
||||||
|| (navigator.userAgent.includes("Mac") && "ontouchend" in document)
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in a new issue