From 67bde4c7ecbb6e56c1114a6a1ab2aaa9810bb494 Mon Sep 17 00:00:00 2001 From: simon Date: Sun, 5 Dec 2021 17:24:57 +0700 Subject: [PATCH] fix notification channel for video thumb download --- tubearchivist/home/src/thumbnails.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tubearchivist/home/src/thumbnails.py b/tubearchivist/home/src/thumbnails.py index a49ddc6..c8d998e 100644 --- a/tubearchivist/home/src/thumbnails.py +++ b/tubearchivist/home/src/thumbnails.py @@ -183,12 +183,12 @@ class ThumbManager: progress = f"{counter}/{len(missing_thumbs)}" if notify: mess_dict = { - "status": "message:download", + "status": "message:add", "level": "info", "title": "Processing Videos", "message": "Downloading Thumbnails, Progress: " + progress, } - RedisArchivist().set_message("message:download", mess_dict) + RedisArchivist().set_message("message:add", mess_dict) if counter % 25 == 0: print("thumbnail progress: " + progress)