mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
* fix(persistence): Update play_date on scrobble only when newer - #2262 Signed-off-by: Xidorn Quan <me@upsuper.org> * expand iff --------- Signed-off-by: Xidorn Quan <me@upsuper.org>
This commit is contained in:
parent
673880d661
commit
1430aa108d
2 changed files with 26 additions and 1 deletions
|
@ -64,7 +64,7 @@ func (r sqlRepository) SetRating(rating int, itemID string) error {
|
|||
func (r sqlRepository) IncPlayCount(itemID string, ts time.Time) error {
|
||||
upd := Update(annotationTable).Where(r.annId(itemID)).
|
||||
Set("play_count", Expr("play_count+1")).
|
||||
Set("play_date", ts)
|
||||
Set("play_date", Expr("max(ifnull(play_date,''),?)", ts))
|
||||
c, err := r.executeSQL(upd)
|
||||
|
||||
if c == 0 || errors.Is(err, orm.ErrNoRows) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue