diff --git a/connectors.py b/connectors.py index 264a75f..440f449 100644 --- a/connectors.py +++ b/connectors.py @@ -246,7 +246,7 @@ class Nyaa(Connector): url = urls[0] has_comment = False - if any(word in url.string for word in BLACKLIST_WORDS): + if any(word.lower() in url.string.lower() for word in BLACKLIST_WORDS): continue valid_trs = valid_trs + 1 @@ -313,7 +313,7 @@ class Pantsu(Connector): url = tds[1].a url_safe = ''.join(url.strings) - if any(word in url_safe for word in BLACKLIST_WORDS): + if any(word.lower() in url_safe.lower() for word in BLACKLIST_WORDS): continue valid_trs = valid_trs + 1 @@ -399,7 +399,7 @@ class YggTorrent(Connector): if check_downloads or check_seeds: url = tds[1].a - if any(word in url.string for word in BLACKLIST_WORDS): + if any(word.lower() in url.string.lower() for word in BLACKLIST_WORDS): continue valid_trs = valid_trs + 1