diff options
author | James Taylor <user234683@users.noreply.github.com> | 2019-08-11 17:44:11 -0700 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2019-08-11 17:44:11 -0700 |
commit | d1ae8dc290e294a7f0a4d1fc485479a0236a2345 (patch) | |
tree | 3d1580d40e8688034436432a456fed66fc898c0e | |
parent | a12b73439a5d81ea4052ec33177fc5a61124017e (diff) | |
download | yt-local-d1ae8dc290e294a7f0a4d1fc485479a0236a2345.tar.lz yt-local-d1ae8dc290e294a7f0a4d1fc485479a0236a2345.tar.xz yt-local-d1ae8dc290e294a7f0a4d1fc485479a0236a2345.zip |
Subscriptions flask port: add missing html info (video url and info dict)
-rw-r--r-- | youtube/subscriptions.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/youtube/subscriptions.py b/youtube/subscriptions.py index 9016844..ba1f334 100644 --- a/youtube/subscriptions.py +++ b/youtube/subscriptions.py @@ -486,6 +486,7 @@ def get_subscriptions_page(): video['thumbnail'] = util.URL_ORIGIN + '/data/subscription_thumbnails/' + video['id'] + '.jpg' video['type'] = 'video' video['item_size'] = 'small' + yt_data_extract.add_extra_html_info(video) videos.append(video) tags = _get_all_tags(cursor) |