Retrieve 60 videos for subscriptions page instead of 30

This commit is contained in:
James Taylor 2019-06-10 15:28:29 -07:00
parent 9da073000a
commit 8539b48c7b

View File

@ -520,7 +520,7 @@ def get_subscriptions_page(env, start_response):
with connection as cursor:
items_html = '''<nav class="item-grid">\n'''
for item in _get_videos(cursor, 30, 0):
for item in _get_videos(cursor, 60, 0):
if item['id'] in downloading_thumbnails:
item['thumbnail'] = util.get_thumbnail_url(item['id'])
else: