Fix error with non-channel-id urls

Only update channel id based on the url if we have it
This commit is contained in:
Jesus E 2023-05-28 21:10:39 -04:00
parent 3025158d14
commit 14c8cf3f5b
No known key found for this signature in database
GPG Key ID: 159C8F8BC9AED8B6

View File

@ -356,8 +356,10 @@ def get_channel_page_general_url(base_url, tab, request, channel_id=None):
info['header_playlist_names'] = local_playlist.get_playlist_names()
if tab in ('videos', 'playlists'):
info['current_sort'] = sort
info['channel_url'] = 'https://www.youtube.com/channel/' + channel_id
info['channel_id'] = channel_id
if channel_id:
info['channel_url'] = ('https://www.youtube.com/channel/'
+ channel_id)
info['channel_id'] = channel_id
elif tab == 'search':
info['search_box_value'] = query
info['header_playlist_names'] = local_playlist.get_playlist_names()