mirror of
https://github.com/iptv-org/iptv.git
synced 2025-05-11 17:40:03 -04:00
Fix errors found by linter
This commit is contained in:
parent
efcae8e3b5
commit
21efb82055
24 changed files with 632 additions and 629 deletions
|
@ -17,10 +17,10 @@ export class Playlist {
|
|||
}
|
||||
|
||||
toString() {
|
||||
let output = `#EXTM3U\n`
|
||||
let output = '#EXTM3U\n'
|
||||
|
||||
this.streams.forEach((stream: Stream) => {
|
||||
output += stream.toString(this.options) + `\n`
|
||||
output += stream.toString(this.options) + '\n'
|
||||
})
|
||||
|
||||
return output
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue