From 049885792099942430ea812d0565f5da0c12d164 Mon Sep 17 00:00:00 2001 From: DARKZOUL5 Date: Wed, 15 Oct 2025 21:37:04 +0300 Subject: [PATCH] do not update yt-dlp executable when running in Docker --- yt-playlist-main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/yt-playlist-main.py b/yt-playlist-main.py index 2181155..b596331 100644 --- a/yt-playlist-main.py +++ b/yt-playlist-main.py @@ -518,6 +518,6 @@ class PlaylistManager: if __name__ == "__main__": cfg = ConfigLoader("yt-playlist-config.json") - update_yt_dlp(cfg.yt_dlp_path) #update yt-dpl executable + if not is_docker(): update_yt_dlp(cfg.yt_dlp_path) #update yt-dpl executable manager = PlaylistManager(cfg) - manager.run() + manager.run() \ No newline at end of file