diff options
-rw-r--r-- | src/utils/pageUtils.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/pageUtils.ts b/src/utils/pageUtils.ts index 50ebde30..83291f1d 100644 --- a/src/utils/pageUtils.ts +++ b/src/utils/pageUtils.ts @@ -67,7 +67,7 @@ export function getExistingChapters(currentVideoID: VideoID, duration: number): const timeElement = link.querySelector("#time") as HTMLElement; const description = link.querySelector("#details h4") as HTMLElement; if (timeElement && description?.innerText?.length > 0 && link.getAttribute("href")?.includes(currentVideoID)) { - const time = getFormattedTimeToSeconds(timeElement.innerText.replace(".", ":")); + const time = getFormattedTimeToSeconds(timeElement.innerText.replace(/\./g, ":")); if (time === null) return []; if (lastSegment) { |