Skip to content

Commit

Permalink
Remove _MAX_PAGES for Feeds
Browse files Browse the repository at this point in the history
  • Loading branch information
pukkandan committed Nov 21, 2020
1 parent 6b78dd3 commit 62ac36a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions youtube_dlc/extractor/youtube.py
Original file line number Diff line number Diff line change
Expand Up @@ -3479,7 +3479,7 @@ class YoutubeFeedsInfoExtractor(YoutubeTabIE):
Subclasses must define the _FEED_NAME and _PLAYLIST_TITLE properties.
"""
_LOGIN_REQUIRED = True
_MAX_PAGES = 5
#_MAX_PAGES = 5
_TESTS = []

@property
Expand Down Expand Up @@ -3558,7 +3558,7 @@ class YoutubeRecommendedIE(YoutubeFeedsInfoExtractor):

class YoutubeSubscriptionsIE(YoutubeFeedsInfoExtractor):
IE_DESC = 'YouTube.com subscriptions feed, "ytsubs" keyword (requires authentication)'
_VALID_URL = r'https?://(?:www\.)?youtube\.com/feed/subscriptions|:ytsubs(?:criptions)?'
_VALID_URL = r'https?://(?:www\.)?youtube\.com/feed/subscriptions|:ytsub(?:criptions)?s?'
_FEED_NAME = 'subscriptions'
_PLAYLIST_TITLE = 'Youtube Subscriptions'

Expand Down

0 comments on commit 62ac36a

Please sign in to comment.