From 597da5697576ca3849b902f1a8ef6a017e35818b Mon Sep 17 00:00:00 2001 From: Simon Date: Tue, 12 Dec 2023 13:55:41 +0700 Subject: [PATCH] fix comment_author_is_uploader extraction --- tubearchivist/home/src/index/comments.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tubearchivist/home/src/index/comments.py b/tubearchivist/home/src/index/comments.py index 50e0f17d..84e6cdd6 100644 --- a/tubearchivist/home/src/index/comments.py +++ b/tubearchivist/home/src/index/comments.py @@ -126,7 +126,7 @@ class Comments: "comment_author_id": comment["author_id"], "comment_author_thumbnail": comment["author_thumbnail"], "comment_author_is_uploader": comment.get( - "comment_author_is_uploader", False + "author_is_uploader", False ), "comment_parent": comment["parent"], }