From fa44a19790bc149735bd4174d278607a87275d3f Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Mon, 19 May 2025 19:12:11 +0300 Subject: [PATCH] Update playlistParser.ts --- scripts/core/playlistParser.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/core/playlistParser.ts b/scripts/core/playlistParser.ts index 7d388dd20..37e2896db 100644 --- a/scripts/core/playlistParser.ts +++ b/scripts/core/playlistParser.ts @@ -23,6 +23,8 @@ export class PlaylistParser { let streams = new Collection() for (const filepath of files) { + if (!this.storage.existsSync(filepath)) continue + const _streams: Collection = await this.parseFile(filepath) streams = streams.concat(_streams) }