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

@@ -35,7 +35,7 @@ export class Stream {
this.id = id || undefined
this.channelId = data.channelId || undefined
this.feedId = data.feedId || undefined
this.title = data.title || undefined
this.title = data.title || ''
this.url = data.url
this.referrer = data.referrer || undefined
this.userAgent = data.userAgent || undefined
@@ -81,7 +81,7 @@ export class Stream {
}
function parseDirectives(string: string) {
let directives = new Collection()
const directives = new Collection()
if (!string) return directives