fix(server): send artist mbids when scrobbling to ListenBrainz

Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
Deluan 2025-02-23 13:29:16 -05:00
parent f6eee65955
commit 20297c2aea
4 changed files with 26 additions and 22 deletions

View file

@ -82,6 +82,10 @@ func (r *scrobbleBufferRepository) Next(service string, userId string) (*model.S
if err != nil {
return nil, err
}
res.ScrobbleEntry.Participants, err = r.getParticipants(&res.ScrobbleEntry.MediaFile)
if err != nil {
return nil, err
}
return res.ScrobbleEntry, nil
}