Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
2.023 fix nl regex in filters
  • Loading branch information
fffonion committed Aug 21, 2021
1 parent d3402f1 commit 651440f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xeHentai/filters.py
Expand Up @@ -199,7 +199,7 @@ def flt_imgurl(r, suc, fail, ori = ori):
fullurl = util.htmlescape(fullurl[0])
else:
fullurl = picurl
_ = re.findall("return nl\('([a-z\d\-]+)'\)", r.text)
_ = re.findall("return nl\('([a-zA-Z\d\-]+)'\)", r.text)
if not _:
break
js_nl = _[0]
Expand Down

0 comments on commit 651440f

Please sign in to comment.