Authored by: bashonly
This commit is contained in:
bashonly 2024-05-03 13:48:51 -05:00
parent 012da49769
commit c62a5e5890
No known key found for this signature in database
GPG Key ID: 783F096F253D15B0
1 changed files with 2 additions and 2 deletions

View File

@ -314,11 +314,11 @@ class PatreonIE(PatreonBaseIE):
info = traverse_obj(attributes, {
'title': ('title', {str.strip}),
'description': ('content', {clean_html}),
'thumbnail': ('image', ('large_url', 'url'), {url_or_none}),
'thumbnail': ('image', ('large_url', 'url'), {url_or_none}, any),
'timestamp': ('published_at', {parse_iso8601}),
'like_count': ('like_count', {int_or_none}),
'comment_count': ('comment_count', {int_or_none}),
}, get_all=False)
})
entries = []
idx = 0