Remove obsolete uppercase_escape function
This function was only necessary with the old ajax format, which
was removed in 4d7bba92eb
Signed-off-by: Jesús <heckyel@hyperbola.info>
This commit is contained in:
@@ -47,7 +47,7 @@ headers_1 = (
|
||||
def playlist_first_page(playlist_id, report_text="Retrieved playlist"):
|
||||
url = 'https://m.youtube.com/playlist?list=' + playlist_id + '&pbj=1'
|
||||
content = util.fetch_url(url, util.mobile_ua + headers_1, report_text=report_text, debug_name='playlist_first_page')
|
||||
content = json.loads(util.uppercase_escape(content.decode('utf-8')))
|
||||
content = json.loads(content.decode('utf-8'))
|
||||
|
||||
return content
|
||||
|
||||
@@ -68,7 +68,7 @@ def get_videos(playlist_id, page):
|
||||
url, headers,
|
||||
report_text="Retrieved playlist", debug_name='playlist_videos')
|
||||
|
||||
info = json.loads(util.uppercase_escape(content.decode('utf-8')))
|
||||
info = json.loads(content.decode('utf-8'))
|
||||
return info
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user