Fix gocomic image matcher
This commit is contained in:
parent
799d3040f0
commit
5c5aa166c7
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ from ..util import tagre
|
||||||
from ..helpers import bounceStarter
|
from ..helpers import bounceStarter
|
||||||
|
|
||||||
_imageSearch = (
|
_imageSearch = (
|
||||||
compile(tagre("img", "src", r'(http://assets\.amuniversal\.com/[0-9a-f]+\?width=\d+)')),
|
compile(tagre("img", "src", r'(http://assets\.amuniversal\.com/[0-9a-f]+\?width=900)')),
|
||||||
compile(tagre("meta", "content", r'(http://assets\.amuniversal\.com/[0-9a-f]+)', before="og:image")),
|
compile(tagre("meta", "content", r'(http://assets\.amuniversal\.com/[0-9a-f]+)', before="og:image")),
|
||||||
)
|
)
|
||||||
_prevSearch = compile(tagre("a", "href", r'(/[^"]+/\d+/\d+/\d+)', after="prev"))
|
_prevSearch = compile(tagre("a", "href", r'(/[^"]+/\d+/\d+/\d+)', after="prev"))
|
||||||
|
|
Loading…
Reference in a new issue