From d479ba02d2915f6804ae460000b7da61e843f46e Mon Sep 17 00:00:00 2001 From: Superredstone Date: Wed, 25 Feb 2026 18:17:14 +0100 Subject: [PATCH] fix: for now download only from tidal --- lib/download.go | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/lib/download.go b/lib/download.go index d67b3c6..7241d02 100644 --- a/lib/download.go +++ b/lib/download.go @@ -107,13 +107,7 @@ func (app *App) GetDownloadUrlOrFallback(askedService string, quality string, so switch askedService { default: case "tidal": - servicesToTry = []string{"tidal", "amazon", "qoboz"} - break - case "amazon": - servicesToTry = []string{"amazon", "tidal", "qoboz"} - break - case "qoboz": - servicesToTry = []string{"qoboz", "tidal", "amazon"} + servicesToTry = []string{"tidal"} break }