[toyhouse] fix extraction for image URLs

This commit is contained in:
Mike Fährmann
2024-09-02 17:15:02 +02:00
parent 864484e4c6
commit 655145853a

View File

@@ -123,4 +123,5 @@ class ToyhouseImageExtractor(ToyhouseExtractor):
def posts(self):
url = "{}/~images/{}".format(self.root, self.user)
return (self._parse_post(self.request(url).text, '<img src="'),)
return (self._parse_post(
self.request(url).text, '<img class="mw-100" src="'),)