Update playlistParser.ts

This commit is contained in:
freearhey
2025-05-19 19:12:11 +03:00
parent c6a6ce2ef0
commit b0c56724a6

View File

@@ -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)
}