fix: use vid_type from API to correctly identify streams
All checks were successful
Docker Build / build (push) Successful in 13s

This commit is contained in:
wander 2026-03-08 07:09:52 -04:00
parent b7ca75b57e
commit 996e074296

View file

@ -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")
}