Skip to content

Commit

Permalink
Remove outdated client id (#1169)
Browse files Browse the repository at this point in the history
  • Loading branch information
mediaminister authored May 6, 2024
1 parent d1fc045 commit 683d436
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/lib/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1046,7 +1046,7 @@ def get_programs(category=None, channel=None, keywords=None, end_cursor=''):
encoded_search = base64.b64encode(dumps(search_dict).encode('utf-8'))
list_id = 'uisearch:searchdata@{}'.format(encoded_search.decode('utf-8'))

api_data = get_paginated_programs(list_id=list_id, page_size=page_size, end_cursor=end_cursor, client='MobileAndroid')
api_data = get_paginated_programs(list_id=list_id, page_size=page_size, end_cursor=end_cursor)
programs = convert_programs(api_data, destination=destination, category=category, channel=channel, keywords=keywords)
return programs

Expand Down

0 comments on commit 683d436

Please sign in to comment.