mirror of
https://github.com/iptv-org/iptv
synced 2025-12-18 11:27:34 -05:00
Fixes linter issues
This commit is contained in:
@@ -23,7 +23,7 @@ export class RawGenerator implements Generator {
|
||||
async generate() {
|
||||
const files = this.streams.groupBy((stream: Stream) => stream.getFilename())
|
||||
|
||||
for (let filename of files.keys()) {
|
||||
for (const filename of files.keys()) {
|
||||
const streams = new Collection(files.get(filename)).map((stream: Stream) => {
|
||||
const groupTitle = stream.getCategoryNames().join(';')
|
||||
if (groupTitle) stream.groupTitle = groupTitle
|
||||
|
||||
Reference in New Issue
Block a user