Skip to content

Commit

Permalink
[ie/PatreonCampaign] Fix extraction (#7664)
Browse files Browse the repository at this point in the history
Authored by: bashonly
  • Loading branch information
bashonly committed Jul 22, 2023
1 parent a250b24 commit 11de6fe
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions yt_dlp/extractor/patreon.py
Expand Up @@ -2,21 +2,21 @@

from .common import InfoExtractor
from .vimeo import VimeoIE

from ..compat import compat_urllib_parse_unquote
from ..networking.exceptions import HTTPError
from ..utils import (
KNOWN_EXTENSIONS,
ExtractorError,
clean_html,
determine_ext,
ExtractorError,
int_or_none,
KNOWN_EXTENSIONS,
mimetype2ext,
parse_iso8601,
str_or_none,
traverse_obj,
try_get,
url_or_none,
urljoin,
)


Expand Down Expand Up @@ -404,8 +404,8 @@ def _entries(self, campaign_id):
posts_json = self._call_api('posts', campaign_id, query=params, note='Downloading posts page %d' % page)

cursor = traverse_obj(posts_json, ('meta', 'pagination', 'cursors', 'next'))
for post in posts_json.get('data') or []:
yield self.url_result(url_or_none(traverse_obj(post, ('attributes', 'patreon_url'))), 'Patreon')
for post_url in traverse_obj(posts_json, ('data', ..., 'attributes', 'patreon_url')):
yield self.url_result(urljoin('https://www.patreon.com/', post_url), PatreonIE)

if cursor is None:
break
Expand Down

0 comments on commit 11de6fe

Please sign in to comment.