Skip to content

Commit

Permalink
YouTubeUi: not set PageToken in all recent subscriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
Taapat committed Jul 14, 2020
1 parent 2e4f93b commit 150b3b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/YouTubeUi.py
Original file line number Diff line number Diff line change
Expand Up @@ -962,7 +962,7 @@ def createEntryList(self):
videos += self.videoIdFromPlaylist(subscription[0], False)
if self.nextPageToken:
for subscription in self.getAllSubscriptions():
videos += self.videoIdFromPlaylist(subscription)
videos += self.videoIdFromPlaylist(subscription, False)
if videos:
videos = sorted(self.extractVideoIdList(videos), key=lambda k: k[12], reverse=True) # sort by date
del videos[int(self.searchResult):] # leaves only searchResult long list
Expand Down

0 comments on commit 150b3b9

Please sign in to comment.