From f41ecd24c518fe45690b5a4117db450005c0701e Mon Sep 17 00:00:00 2001 From: Simon Date: Fri, 17 Nov 2023 09:26:31 +0700 Subject: [PATCH] fix missing config for comments extraction, #596 --- 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 5f25602..50e0f17 100644 --- a/tubearchivist/home/src/index/comments.py +++ b/tubearchivist/home/src/index/comments.py @@ -77,7 +77,7 @@ class Comments: def get_yt_comments(self): """get comments from youtube""" yt_obs = self.build_yt_obs() - info_json = YtWrap(yt_obs).extract(self.youtube_id) + info_json = YtWrap(yt_obs, config=self.config).extract(self.youtube_id) if not info_json: return False, False