From 09fa93f1e41a0ba9ab17fbeadc3f29c989798bf4 Mon Sep 17 00:00:00 2001 From: Mathis Maquenne <124215603+mathismqn@users.noreply.github.com> Date: Wed, 29 Jul 2026 11:22:07 +0200 Subject: [PATCH] refactor: no longer require DEEZER_ARL at startup --- internal/config/config.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/internal/config/config.go b/internal/config/config.go index 9447943..dba8e51 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -17,9 +17,6 @@ type Config struct { func New() (*Config, error) { arl := os.Getenv("DEEZER_ARL") - if arl == "" { - return nil, fmt.Errorf("DEEZER_ARL is not set. Export it in your shell: export DEEZER_ARL='your_cookie'") - } homeDir, err := os.UserHomeDir() if err != nil {