Skip to content

Commit 5f37f67

Browse files
authored
[ie/archive.org] Fix metadata extraction (yt-dlp#15286)
Closes yt-dlp#15280 Authored by: bashonly
1 parent aa220d0 commit 5f37f67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

yt_dlp/extractor/archiveorg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ def _real_extract(self, url):
279279
'url': 'https://archive.org/' + track['file'].lstrip('/'),
280280
}
281281

282-
metadata = self._download_json('http://archive.org/metadata/' + identifier, identifier)
282+
metadata = self._download_json(f'https://archive.org/metadata/{identifier}', identifier)
283283
m = metadata['metadata']
284284
identifier = m['identifier']
285285

0 commit comments

Comments
 (0)