Merge remote-tracking branch 'origin/master'

# Conflicts:
#	connectors.py
This commit is contained in:
Michel Roux 2020-02-21 17:12:45 +01:00
commit df3c72ea92
1 changed files with 3 additions and 3 deletions

View File

@ -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