From bd4f025178c18e59e42ab43eb7e9787cb5b585a4 Mon Sep 17 00:00:00 2001 From: Audionut Date: Sun, 24 Nov 2024 01:06:09 +1000 Subject: [PATCH] ULCX - skip concerts todo: fix other sites --- src/trackers/ULCX.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/trackers/ULCX.py b/src/trackers/ULCX.py index 78a5d493..489ee64e 100644 --- a/src/trackers/ULCX.py +++ b/src/trackers/ULCX.py @@ -61,6 +61,9 @@ async def get_res_id(self, resolution): return resolution_id async def upload(self, meta, disctype): + if 'concert' in meta['keywords']: + console.print('[bold red]Concerts not allowed.') + return common = COMMON(config=self.config) await common.edit_torrent(meta, self.tracker, self.source_flag) cat_id = await self.get_cat_id(meta['category'])