Sluggy Freelance - Changing from HTTP to HTTPS (#246)

This commit is contained in:
erpbridge 2022-11-26 10:47:55 -05:00 committed by GitHub
parent a039facffd
commit b37a0ddc68
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -302,8 +302,8 @@ class SlightlyDamned(ComicControlScraper):
class SluggyFreelance(_ParserScraper):
url = 'http://sluggy.com/'
stripUrl = 'http://archives.sluggy.com/book.php?chapter=%s'
url = 'https://sluggy.com/'
stripUrl = 'https://archives.sluggy.com/book.php?chapter=%s'
firstStripUrl = stripUrl % '1'
imageSearch = '//div[d:class("comic_content")]/img/@data-src'
prevSearch = '//div[d:class("previous")]/a'