From 5b45d77612396956fb7145daad4350a60fc193a6 Mon Sep 17 00:00:00 2001 From: theshoeshiner <2922868+theshoeshiner@users.noreply.github.com> Date: Thu, 3 Apr 2025 09:10:01 -0400 Subject: [PATCH] Add quality field to streams json --- scripts/models/stream.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/models/stream.ts b/scripts/models/stream.ts index 383790900..bd01845f6 100644 --- a/scripts/models/stream.ts +++ b/scripts/models/stream.ts @@ -326,7 +326,8 @@ export class Stream { feed: this.feedId || null, url: this.url, referrer: this.httpReferrer || null, - user_agent: this.httpUserAgent || null + user_agent: this.httpUserAgent || null, + quality: this.getQuality() || null } }