From d2a22b169529c82b65191f024279204d47d3a88d Mon Sep 17 00:00:00 2001 From: Pierce Thompson Date: Wed, 22 Nov 2023 01:31:11 -0500 Subject: [PATCH] Fix error message when initial playlist fetch fails --- stmp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stmp.go b/stmp.go index b736cc0..e4152f4 100644 --- a/stmp.go +++ b/stmp.go @@ -68,7 +68,7 @@ func main() { } playlistResponse, err := connection.GetPlaylists() if err != nil { - fmt.Printf("Error fetching indexes from server: %s\n", err) + fmt.Printf("Error fetching playlists from server: %s\n", err) os.Exit(1) }