Update scripts

This commit is contained in:
freearhey
2025-04-23 05:21:33 +03:00
parent c38ab0f070
commit 0deb0c8e01
2 changed files with 5 additions and 5 deletions

View File

@@ -17,10 +17,10 @@ export class Playlist {
}
toString() {
let output = '#EXTM3U\n'
let output = '#EXTM3U\r\n'
this.streams.forEach((stream: Stream) => {
output += stream.toString(this.options) + '\n'
output += stream.toString(this.options) + '\r\n'
})
return output