mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Fix GetNowPlaying endpoint showing only the last play
This commit is contained in:
parent
f8ee6db72a
commit
97434c1789
12 changed files with 110 additions and 31 deletions
|
@ -37,8 +37,12 @@ func (r *playerRepository) Get(id string) (*model.Player, error) {
|
|||
return &res, err
|
||||
}
|
||||
|
||||
func (r *playerRepository) FindByName(client, userName string) (*model.Player, error) {
|
||||
sel := r.newSelect().Columns("*").Where(And{Eq{"client": client}, Eq{"user_name": userName}})
|
||||
func (r *playerRepository) FindMatch(userName, client, userAgent string) (*model.Player, error) {
|
||||
sel := r.newSelect().Columns("*").Where(And{
|
||||
Eq{"client": client},
|
||||
Eq{"user_agent": userAgent},
|
||||
Eq{"user_name": userName},
|
||||
})
|
||||
var res model.Player
|
||||
err := r.queryOne(sel, &res)
|
||||
return &res, err
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue