mirror of
https://github.com/evilhero/mylar
synced 2024-12-25 17:16:51 +00:00
FIX: Error when using Experimental search (typo)
This commit is contained in:
parent
70f0c75dc8
commit
4607a1688b
1 changed files with 2 additions and 2 deletions
|
@ -125,8 +125,8 @@ def Startit(searchName, searchIssue, searchYear, ComicVersion, IssDateFix):
|
|||
# 'link': str(link)
|
||||
# })
|
||||
# this will still match on crap like 'For SomeSomayes' especially if the series length < 'For SomeSomayes'
|
||||
if subs.startswith('for').lower():
|
||||
if cName.startswith('for').lower():
|
||||
if subs.lower().startswith('for'):
|
||||
if cName.lower().startswith('for'):
|
||||
pass
|
||||
else:
|
||||
#this is the crap we ignore. Continue
|
||||
|
|
Loading…
Reference in a new issue