From b7ca75b57e5fd720f17db2146b4e3404eec0a6e8 Mon Sep 17 00:00:00 2001 From: wander Date: Sun, 8 Mar 2026 06:48:54 -0400 Subject: [PATCH] fix: resolve AttributeError when accessing sqlite3.Row in api_get_channel_videos --- ta_symlink.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ta_symlink.py b/ta_symlink.py index 64b8086..3c9ff61 100644 --- a/ta_symlink.py +++ b/ta_symlink.py @@ -1479,7 +1479,7 @@ def api_get_channel_videos(): "filename": Path(row['symlink']).name if row['symlink'] else meta.get('title'), "source_path": meta.get('filesystem_path'), "ta_source": meta.get('channel_name', channel_name), - "is_live": bool(row['is_live']) if 'is_live' in [k[0] for k in row.description] else False + "is_live": bool(row['is_live']) if 'is_live' in row.keys() else False }) return jsonify(videos)