Update scripts

This commit is contained in:
freearhey
2025-07-20 00:30:29 +03:00
parent 5b16467a64
commit feac6b6191
9 changed files with 41 additions and 38 deletions

View File

@@ -133,9 +133,9 @@ export class Channel {
return streams
}
getStreamNames(): Collection {
getStreamTitles(): Collection {
return this.getStreams()
.map((stream: Stream) => stream.getName())
.map((stream: Stream) => stream.getTitle())
.uniq()
}
@@ -184,7 +184,7 @@ export class Channel {
name: this.name,
altNames: this.altNames.all(),
guideNames: this.getGuideNames().all(),
streamNames: this.getStreamNames().all(),
streamTitles: this.getStreamTitles().all(),
feedFullNames: this.getFeedFullNames().all()
}
}