mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-21 16:11:56 +00:00
Merge branch 'dev-0.1.7' into 'master'
0.1.7 - Fix dupes See merge request goscrobble/goscrobble-api!14
This commit is contained in:
commit
4d8d896a2e
@ -1,5 +1,6 @@
|
||||
# 0.1.7
|
||||
- Fix navidrome logging 2x scrobbles if second player is paused
|
||||
- Fix jellyfin logging 2x scrobbles if 2 players are playing
|
||||
|
||||
# 0.1.6
|
||||
- Allow UUID of 0 in artists/{uuid}/top to return site-wide stats
|
||||
|
@ -3,6 +3,7 @@ package goscrobble
|
||||
import (
|
||||
"database/sql"
|
||||
"errors"
|
||||
"fmt"
|
||||
"log"
|
||||
"net"
|
||||
"time"
|
||||
@ -48,7 +49,7 @@ func ParseJellyfinInput(userUUID string, jf JellyfinRequest, ip net.IP, tx *sql.
|
||||
// fmt.Printf("%+v", jf)
|
||||
|
||||
// Custom cache key - never log the same song twice in a row for now... (:
|
||||
lastPlayedTitle := getUserLastPlayed(userUUID)
|
||||
lastPlayedTitle := getUserLastPlayed(userUUID + fmt.Sprintf(":%s", jf.DeviceID))
|
||||
if lastPlayedTitle == jf.Name+":"+jf.Album {
|
||||
// If it matches last played song, skip it
|
||||
return nil
|
||||
@ -103,7 +104,7 @@ func ParseJellyfinInput(userUUID string, jf JellyfinRequest, ip net.IP, tx *sql.
|
||||
}
|
||||
|
||||
// Add cache key!
|
||||
setUserLastPlayed(userUUID, jf.Name+":"+jf.Album)
|
||||
setUserLastPlayed(userUUID+fmt.Sprintf(":%s", jf.DeviceID), jf.Name+":"+jf.Album)
|
||||
|
||||
return nil
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user