Add log message to try to capture error in #2735

This commit is contained in:
Deluan 2024-01-20 20:18:59 -05:00 committed by Joe Stump
parent 631e26eb70
commit 020f9db5bd
No known key found for this signature in database
GPG Key ID: 29151C3EC48A0EB9

View File

@ -30,6 +30,7 @@ func (r *playlistRepository) Tracks(playlistId string, refreshSmartPlaylist bool
}
pls, err := r.Get(playlistId)
if err != nil {
log.Error(r.ctx, "Error getting playlist's tracks - THIS SHOULD NOT HAPPEN!", "playlistId", playlistId, err)
return nil
}
if refreshSmartPlaylist {