Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mimvahedi committed Dec 12, 2023
1 parent ce6e7c2 commit 5377e4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion youtube_dl/extractor/alaa.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,5 +68,5 @@ def _real_extract(self, url):
set_id = self._match_id(url)
set_data = self._download_json('https://alaatv.com/api/v2/set/{0}'.format(set_id), set_id)
set_title = set_data['data']['title']
set_content = map(lambda x: x['url']['web'], set_data['data']['content'])
set_content = list(map(lambda x: x['url']['web'], set_data['data']['contents']))
return self.playlist_result(set_content, set_id, set_title)

0 comments on commit 5377e4d

Please sign in to comment.