diff --git a/tubearchivist/home/src/download/yt_dlp_handler.py b/tubearchivist/home/src/download/yt_dlp_handler.py index a0f01eb9..c25b161d 100644 --- a/tubearchivist/home/src/download/yt_dlp_handler.py +++ b/tubearchivist/home/src/download/yt_dlp_handler.py @@ -143,7 +143,7 @@ class DownloadPostProcess: def get_comments(self): """get comments from youtube""" - CommentList(self.download.videos).index(send_notifications=True) + CommentList(self.download.videos).index(notify=True) class VideoDownloader: diff --git a/tubearchivist/home/src/index/comments.py b/tubearchivist/home/src/index/comments.py index 414d8753..29bdeff3 100644 --- a/tubearchivist/home/src/index/comments.py +++ b/tubearchivist/home/src/index/comments.py @@ -146,6 +146,7 @@ class Comments: if not self.is_activated: return + print(f"{self.youtube_id}: upload comments") _, _ = ElasticWrap(self.es_path).put(self.json_data) vid_path = f"ta_video/_update/{self.youtube_id}"