diff --git a/src/popup.ts b/src/popup.ts index c5e12f7c..3aaa5ac8 100644 --- a/src/popup.ts +++ b/src/popup.ts @@ -498,7 +498,7 @@ async function runThePopup(messageListener?: MessageListener): Promise { //display the video times from the array at the top, in a different section function displayDownloadedSponsorTimes(sponsorTimes: SponsorTime[], time: number) { let currentSegmentTab = segmentTab; - if (!sponsorTimes.some((segment) => segment.actionType === ActionType.Chapter)) { + if (!sponsorTimes.some((segment) => segment.actionType === ActionType.Chapter && segment.source !== SponsorSourceType.YouTube)) { PageElements.issueReporterTabs.classList.add("hidden"); currentSegmentTab = SegmentTab.Segments; } else {