From fdadcfd48b764b1da6c3ce1b5dfd7193008f1a44 Mon Sep 17 00:00:00 2001 From: Simon Date: Wed, 24 Dec 2025 14:55:09 +0700 Subject: [PATCH] fix delete channel tvart --- backend/download/src/thumbnails.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/backend/download/src/thumbnails.py b/backend/download/src/thumbnails.py index 2d9d4739..f9617973 100644 --- a/backend/download/src/thumbnails.py +++ b/backend/download/src/thumbnails.py @@ -228,10 +228,13 @@ class ThumbManager(ThumbManagerBase): """delete all artwork of channel""" thumb = os.path.join(self.CHANNEL_DIR, f"{self.item_id}_thumb.jpg") banner = os.path.join(self.CHANNEL_DIR, f"{self.item_id}_banner.jpg") + tv = os.path.join(self.CHANNEL_DIR, f"{self.item_id}_tvart.jpg") if os.path.exists(thumb): os.remove(thumb) if os.path.exists(banner): os.remove(banner) + if os.path.exists(tv): + os.remove(tv) def delete_playlist_thumb(self): """delete playlist thumbnail"""