diff options
author | James Taylor <user234683@users.noreply.github.com> | 2020-08-11 21:14:13 -0700 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2020-08-11 21:14:13 -0700 |
commit | cc123d6761c50be40ab972550a257d40c2802856 (patch) | |
tree | 46553e60fe7e7f64b2e598b6ee30d36fba103b2c /youtube | |
parent | 8e1255147166a7c562a05fc5f8f8fea06b2afe43 (diff) | |
download | yt-local-cc123d6761c50be40ab972550a257d40c2802856.tar.lz yt-local-cc123d6761c50be40ab972550a257d40c2802856.tar.xz yt-local-cc123d6761c50be40ab972550a257d40c2802856.zip |
Fix author_url not prefixed in subscriptions page
Diffstat (limited to 'youtube')
-rw-r--r-- | youtube/subscriptions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube/subscriptions.py b/youtube/subscriptions.py index 900f3ac..6f75578 100644 --- a/youtube/subscriptions.py +++ b/youtube/subscriptions.py @@ -175,7 +175,7 @@ def _get_videos(cursor, number_per_page, offset, tag = None): 'time_published': exact_timestamp(db_video[3]) if db_video[4] else posix_to_dumbed_down(db_video[3]), 'author': db_video[5], 'author_id': db_video[6], - 'author_url': 'https://www.youtube.com/channel/' + db_video[6], + 'author_url': '/https://www.youtube.com/channel/' + db_video[6], }) return videos, pseudo_number_of_videos |