From 8357b35dd7f144f02b558b800fec6fdf19c1a5b5 Mon Sep 17 00:00:00 2001 From: Gianluca Lauro Date: Mon, 10 Mar 2025 13:14:55 +0100 Subject: [PATCH] fixed GET_ONLY_LINK in HLS_Downloader --- StreamingCommunity/Lib/Downloader/HLS/downloader.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/StreamingCommunity/Lib/Downloader/HLS/downloader.py b/StreamingCommunity/Lib/Downloader/HLS/downloader.py index 9f5b272..a6ed152 100644 --- a/StreamingCommunity/Lib/Downloader/HLS/downloader.py +++ b/StreamingCommunity/Lib/Downloader/HLS/downloader.py @@ -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 }