Skip to content

Commit

Permalink
Merge pull request #48 from Insprill/fix/playlists-error-msg
Browse files Browse the repository at this point in the history
Fix error message when initial playlist fetch fails
  • Loading branch information
wildeyedskies authored Nov 23, 2023
2 parents dc2d778 + d2a22b1 commit 19c32ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stmp.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}

Expand Down

0 comments on commit 19c32ac

Please sign in to comment.