From 24f45972c128cd5d0a0dc7a09f964524f5458f57 Mon Sep 17 00:00:00 2001 From: Viktor Varland Date: Mon, 8 Sep 2025 13:09:05 +0200 Subject: [PATCH] fix: missing closing parenthesis --- internal/dl/dl.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/dl/dl.go b/internal/dl/dl.go index 748642f..0fbae90 100644 --- a/internal/dl/dl.go +++ b/internal/dl/dl.go @@ -112,7 +112,7 @@ func Youtube(d Download, p config.Provider) { if p.Player_client != "" { args = append(args, "--extractor-args") - args = append(args, fmt.Sprintf("youtube:player_client=%s", p.Player_client) + args = append(args, fmt.Sprintf("youtube:player_client=%s", p.Player_client)) } args = append(args, "--format-sort")