1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-21 18:22:30 +01:00

[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
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88
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:

View File

@ -61,8 +61,11 @@ __tests__ = (
"comments" : dict,
"content" : [
"Привет! Это Милшу ) Я открываю комментарии в своём телеграм канале Милшу ( ",
"https://t.me/milshoonya",
" ) и хочу, чтобы вы первые протестировали его работу :3\nСсылку на вступление в чат оставлю здесь ",
"https://t.me/+Z_5ph-XnIQU2YWMy",
"\nТакже хотела напомнить, что мы собираем деньги на два арта от Ананаси: ",
"https://boosty.to/milshoo/single-payment/donation/550562/target?share=target_link",
"\nБуду очень благодарна за помощь :D  ",
],
"contentCounters": list,
@ -85,7 +88,11 @@ __tests__ = (
"isPublished": True,
"isRecord" : False,
"isWaitingVideo": False,
"links" : [],
"links" : [
"https://t.me/milshoonya",
"https://t.me/+Z_5ph-XnIQU2YWMy",
"https://boosty.to/milshoo/single-payment/donation/550562/target?share=target_link",
],
"price" : 0,
"publishTime": 1711027834,
"showViewsCounter": False,