Skip to content

Commit

Permalink
[iwara] Fix download URLs (closes #17026)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kazuma Takahara authored and Sergey M committed Jul 21, 2018
1 parent e9c671d commit edb0e17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion youtube_dl/extractor/iwara.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def _real_extract(self, url):
height = int_or_none(self._search_regex(
r'(\d+)p', format_id, 'height', default=None))
formats.append({
'url': a_format['uri'],
'url': self._proto_relative_url(a_format['uri'], 'https:'),
'format_id': format_id,
'ext': mimetype2ext(a_format.get('mime')) or 'mp4',
'height': height,
Expand Down

0 comments on commit edb0e17

Please sign in to comment.