mirror of
https://github.com/iptv-org/iptv.git
synced 2025-05-11 17:40:03 -04:00
Update scripts
This commit is contained in:
parent
9fc0d2c74b
commit
ddedd67b80
2 changed files with 5 additions and 5 deletions
|
@ -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
|
||||
|
|
|
@ -352,14 +352,14 @@ export class Stream {
|
|||
output += `,${this.getTitle()}`
|
||||
|
||||
if (this.referrer) {
|
||||
output += `\n#EXTVLCOPT:http-referrer=${this.referrer}`
|
||||
output += `\r\n#EXTVLCOPT:http-referrer=${this.referrer}`
|
||||
}
|
||||
|
||||
if (this.userAgent) {
|
||||
output += `\n#EXTVLCOPT:http-user-agent=${this.userAgent}`
|
||||
output += `\r\n#EXTVLCOPT:http-user-agent=${this.userAgent}`
|
||||
}
|
||||
|
||||
output += `\n${this.url}`
|
||||
output += `\r\n${this.url}`
|
||||
|
||||
return output
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue