fixed GET_ONLY_LINK in HLS_Downloader

This commit is contained in:
Gianluca Lauro 2025-03-10 13:14:55 +01:00 committed by Gianluca Lauro
parent 6d13b1875a
commit 8357b35dd7

View File

@ -438,13 +438,13 @@ class HLS_Downloader:
return response
if GET_ONLY_LINK:
console.print(f"URL: {self.m3u8_url}[/bold red]")
console.print(f"URL: [bold red]{self.m3u8_url}[/bold red]")
return {
'path': None,
'url': self.m3u8_url,
'is_master': getattr(self.m3u8_manager, 'is_master', None),
'msg': None,
'error': error_msg,
'error': None,
'stopped': True
}