Browse Source

Suppress type error(not a function) on calling fastSeek (#5452)

pull/4/head
Sho Kusano 6 years ago
committed by Eugen Rochko
parent
commit
09d81defcd
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      app/javascript/mastodon/middleware/sounds.js

+ 5
- 1
app/javascript/mastodon/middleware/sounds.js View File

@ -12,7 +12,11 @@ const createAudio = sources => {
const play = audio => {
if (!audio.paused) {
audio.pause();
audio.fastSeek(0);
if (typeof audio.fastSeek === 'function') {
audio.fastSeek(0);
} else {
audio.seek(0);
}
}
audio.play();

Loading…
Cancel
Save