[Glitch] Audio.prototype.seek is undefined

Port dfeb3ba74f to glitch-soc
th-downstream
Thibaut Girka 6 years ago committed by ThibG
parent 66dd890390
commit bd64d11f76

@ -15,7 +15,7 @@ const play = audio => {
if (typeof audio.fastSeek === 'function') { if (typeof audio.fastSeek === 'function') {
audio.fastSeek(0); audio.fastSeek(0);
} else { } else {
audio.seek(0); audio.currentTime = 0;
} }
} }

Loading…
Cancel
Save