aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/content.ts
diff options
context:
space:
mode:
authorcalledude <[email protected]>2024-10-18 16:06:39 +0200
committercalledude <[email protected]>2024-10-18 22:47:45 +0200
commit0c3aa922ca2e651249fbdadc58a725226216df90 (patch)
treeab59f77f5d0740d74d119703c0e1089ebbd1fe04 /src/content.ts
parent875ec357d9f352f5b1b32ded0b51e27b5805e32a (diff)
downloadSponsorBlock-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.ts2
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();