From 996e074296d2e7af41e7871f8541be3d40af51ac Mon Sep 17 00:00:00 2001 From: wander Date: Sun, 8 Mar 2026 07:09:52 -0400 Subject: [PATCH] fix: use vid_type from API to correctly identify streams --- ta_symlink.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ta_symlink.py b/ta_symlink.py index 3c9ff61..9aec3f2 100644 --- a/ta_symlink.py +++ b/ta_symlink.py @@ -383,7 +383,7 @@ def fetch_all_metadata(): "title": title, "channel_name": channel_name, "published": published, - "is_live": video.get("is_live", False), + "is_live": video.get("vid_type") == "streams", "filesystem_path": video.get("path") or video.get("filesystem_path") }