From e3da9824b6e02b3966343a30b5498f5d96e17ff5 Mon Sep 17 00:00:00 2001 From: Gabe Date: Sat, 1 Nov 2025 22:54:45 +0800 Subject: [PATCH] fix: subtitle bug --- src/subtitle/YouTubeCaptionProvider.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/subtitle/YouTubeCaptionProvider.js b/src/subtitle/YouTubeCaptionProvider.js index a5e7375..503732a 100644 --- a/src/subtitle/YouTubeCaptionProvider.js +++ b/src/subtitle/YouTubeCaptionProvider.js @@ -875,6 +875,7 @@ class YouTubeCaptionProvider { logger.info( `Youtube Provider: Appending ${subtitlesForThisChunk.length} subtitles from chunk ${chunkNum}.` ); + this.#subtitles.push(subtitlesForThisChunk); this.#managerInstance.appendSubtitles(subtitlesForThisChunk); } else { logger.info(`Youtube Provider: Chunk ${chunkNum} no subtitles.`);