Fixes linter issues

This commit is contained in:
freearhey
2025-07-29 04:01:22 +03:00
parent 685940428c
commit 37cfc2cc12
7 changed files with 9 additions and 9 deletions

View File

@@ -78,7 +78,7 @@ export class DataProcessor {
const feedsGroupedByChannelId = feeds.groupBy((feed: Feed) => feed.channelId)
const feedsGroupedById = feeds.groupBy((feed: Feed) => feed.id)
let logos = new Collection(data.logos).map(data => new Logo(data).withFeed(feedsGroupedById))
const logos = new Collection(data.logos).map(data => new Logo(data).withFeed(feedsGroupedById))
const logosGroupedByChannelId = logos.groupBy((logo: Logo) => logo.channelId)
const logosGroupedByStreamId = logos.groupBy((logo: Logo) => logo.getStreamId())