mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Don't abort request when id to scrobble is not found
This commit is contained in:
parent
3e08c8f8c3
commit
e42ebebe72
1 changed files with 2 additions and 2 deletions
|
@ -50,14 +50,14 @@ func (c *MediaAnnotationController) Scrobble() {
|
|||
mf, err := c.scrobbler.Register(playerId, ids[i], t)
|
||||
if err != nil {
|
||||
beego.Error("Error scrobbling:", err)
|
||||
c.SendError(responses.ERROR_GENERIC, "Internal error")
|
||||
continue
|
||||
}
|
||||
beego.Info(fmt.Sprintf(`Scrobbled (%s) "%s" at %v`, ids[i], mf.Title, t))
|
||||
} else {
|
||||
mf, err := c.scrobbler.NowPlaying(playerId, ids[i], username, playerName)
|
||||
if err != nil {
|
||||
beego.Error("Error setting", ids[i], "as current song:", err)
|
||||
c.SendError(responses.ERROR_GENERIC, "Internal error")
|
||||
continue
|
||||
}
|
||||
beego.Info(fmt.Sprintf(`Current Song (%s) "%s" at %v`, ids[i], mf.Title, t))
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue