mirror of https://github.com/tootsuite/mastodon
parent
3810d98cd8
commit
09d81defcd
|
@ -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…
Reference in New Issue