Audio.prototype.seek is undefined (#5935)

master
Yamagishi Kazutoshi 6 years ago committed by Eugen Rochko
parent 86b4d5439c
commit f08e6e9ab5
  1. 2
      app/javascript/mastodon/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