diff options
author | calledude <[email protected]> | 2024-10-18 16:06:39 +0200 |
---|---|---|
committer | calledude <[email protected]> | 2024-10-18 22:47:45 +0200 |
commit | 0c3aa922ca2e651249fbdadc58a725226216df90 (patch) | |
tree | ab59f77f5d0740d74d119703c0e1089ebbd1fe04 /src/content.ts | |
parent | 875ec357d9f352f5b1b32ded0b51e27b5805e32a (diff) | |
download | SponsorBlock-0c3aa922ca2e651249fbdadc58a725226216df90.tar.gz SponsorBlock-0c3aa922ca2e651249fbdadc58a725226216df90.zip |
Fix skip audio notification not working on firefox
Diffstat (limited to 'src/content.ts')
-rw-r--r-- | src/content.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/content.ts b/src/content.ts index 3596a70d..fbb73bef 100644 --- a/src/content.ts +++ b/src/content.ts @@ -1721,7 +1721,7 @@ function skipToTime({v, skipTime, skippingSegments, openNotice, forceAutoSkip, u if (autoSkip && Config.config.audioNotificationOnSkip && !isSubmittingSegment && !getVideo()?.muted) { - const beep = new Audio(chrome.runtime.getURL("icons/beep.ogg")); + const beep = new Audio(chrome.runtime.getURL("icons/beep.oga")); beep.volume = getVideo().volume * 0.1; const oldMetadata = navigator.mediaSession.metadata beep.play(); |