From 6e61c39f517137c1e94324399850e48e585364d8 Mon Sep 17 00:00:00 2001 From: HeshamTB Date: Thu, 14 Sep 2023 19:36:50 +0300 Subject: [PATCH] fix previous --- yt.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yt.go b/yt.go index 8cf1ee7..7f43fdf 100644 --- a/yt.go +++ b/yt.go @@ -10,12 +10,12 @@ import ( // yt-dlp flags and options for all links var ytdlpParams []string = []string{ + "--get-url", "--no-playlist", } // yt-dlp flags and options only for youtube links var ytlinkParams []string = []string{ - "--get-url", "-f 22", }