From 1c8de32e724aca93352bb679cb65f79f7614d2f7 Mon Sep 17 00:00:00 2001 From: arabcoders Date: Sat, 14 Jun 2025 01:07:01 +0300 Subject: [PATCH] tag premiere video correctly. --- app/library/DownloadQueue.py | 2 +- ui/components/History.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/library/DownloadQueue.py b/app/library/DownloadQueue.py index 5b7a6456..721b02ae 100644 --- a/app/library/DownloadQueue.py +++ b/app/library/DownloadQueue.py @@ -294,7 +294,7 @@ class DownloadQueue(metaclass=Singleton): if not item.extras.get("live_in") and live_in: item.extras["live_in"] = live_in - if not item.extras.get("live_in") and is_premiere: + if not item.extras.get("is_premiere") and is_premiere: item.extras["is_premiere"] = is_premiere dl = ItemDTO( diff --git a/ui/components/History.vue b/ui/components/History.vue index 05a86072..56128108 100644 --- a/ui/components/History.vue +++ b/ui/components/History.vue @@ -599,7 +599,7 @@ const setStatus = item => { } if ('not_live' === item.status) { - if (item.extras?.is_premiere){ + if (item.extras?.is_premiere) { return 'Premiere' } return display_style.value === 'cards' ? 'Live Stream' : 'Live'