[boosty] fix typo causing 'links' to always be empty (#2387)

This commit is contained in:
Mike Fährmann
2024-10-03 20:22:24 +02:00
parent 274d99e7d6
commit ee8c4e2e49
2 changed files with 9 additions and 2 deletions

View File

@@ -108,7 +108,7 @@ class BoostyExtractor(Extractor):
elif type == "link":
url = block["url"]
links.appens(url)
links.append(url)
content.append(url)
else: