From f803c5298be18cc07e9265ddf352010c99c33ecb Mon Sep 17 00:00:00 2001 From: simon Date: Mon, 21 Mar 2022 11:09:16 +0700 Subject: [PATCH] fix missing update_status method call in ignore video --- tubearchivist/home/src/frontend/api_calls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tubearchivist/home/src/frontend/api_calls.py b/tubearchivist/home/src/frontend/api_calls.py index 16814ba..f7f50e7 100644 --- a/tubearchivist/home/src/frontend/api_calls.py +++ b/tubearchivist/home/src/frontend/api_calls.py @@ -112,7 +112,7 @@ class PostData: """ignore from download queue""" video_id = self.exec_val print(f"ignore video {video_id}") - PendingInteract(video_id=video_id, status="ignore") + PendingInteract(video_id=video_id, status="ignore").update_status() # also clear from redis queue RedisQueue("dl_queue").clear_item(video_id) return {"success": True}