[Glitch] Audio.prototype.seek is undefined

Port f08e6e9ab5 to glitch-soc
master
Thibaut Girka 6 years ago committed by ThibG
parent 8dbbec0939
commit f4ca3262f2
  1. 2
      app/javascript/flavours/glitch/middleware/sounds.js

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

Loading…
Cancel
Save