From fe4810c9c2221b5f4ffa08635ed92d74e86c5bc4 Mon Sep 17 00:00:00 2001 From: girst Date: Mon, 24 Apr 2023 15:33:04 +0000 Subject: [PATCH] fix subscription button on fallback channel page --- app/youtube/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/youtube/__init__.py b/app/youtube/__init__.py index e26b55c..352450b 100644 --- a/app/youtube/__init__.py +++ b/app/youtube/__init__.py @@ -256,7 +256,7 @@ def channel(channel_id, _=None): if not xmlfeed: raise NotFound("unknown channel id") - title, author, videos, channel_id, _ = parse_xml(xmlfeed) + title, author, videos, _, _ = parse_xml(xmlfeed) with sqlite3.connect(cf['global']['database']) as conn: c = conn.cursor() -- 2.39.3