[everia] prevent redirect when fetching a post page

This commit is contained in:
Mike Fährmann
2025-06-04 09:41:30 +02:00
parent 72e1a4a0cb
commit b5334f5837
2 changed files with 2 additions and 2 deletions

View File

@@ -50,7 +50,7 @@ class EveriaPostExtractor(EveriaExtractor):
example = "https://everia.club/0000/00/00/TITLE"
def items(self):
url = self.root + self.groups[0]
url = self.root + self.groups[0] + "/"
page = self.request(url).text
content = text.extr(page, 'itemprop="text">', "<h3")
urls = re.findall(r'img.*?src="([^"]+)', content)