We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2440e69 commit a8e50c4Copy full SHA for a8e50c4
server/ctrlsubsonic/handlers_common.go
@@ -65,10 +65,8 @@ func (c *Controller) ServeScrobble(r *http.Request) *spec.Response {
65
scrobbleErrs.Add(err)
66
}
67
68
-
69
if scrobbleErrs.Len() > 0 {
70
- log.Printf("error when submitting: %v", scrobbleErrs)
71
- return spec.NewError(0, "error when submitting: %v", scrobbleErrs)
+ return spec.NewError(0, "error when submitting: %s", scrobbleErrs.Error())
72
73
74
return spec.NewResponse()
0 commit comments