From c3bedc484493bcc3b071b29b515666692451f735 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Mon, 27 Nov 2023 02:06:48 -0800 Subject: fix: regression with youtube generation - fixed missing group and videoCount keys --- backend/fileutil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'backend/fileutil.py') diff --git a/backend/fileutil.py b/backend/fileutil.py index 2aa2d6f..c12ae43 100644 --- a/backend/fileutil.py +++ b/backend/fileutil.py @@ -55,7 +55,7 @@ def get_local_channels(path: str = "data"): raise Exception("Local channel data not found") with open(path, "r", encoding="utf-8") as file: rows = file.read().splitlines() - return [tuple(row.split(",")) for row in rows] + return [tuple(row.split(":")) for row in rows] def check_diff_refresh(): -- cgit v1.2.3