Fix scrobble error spam in the logs.

Relates to #2831 and #2975
This commit is contained in:
Deluan 2024-04-26 16:59:14 -04:00
parent 18143fa5a1
commit f5df948eb1
4 changed files with 44 additions and 15 deletions

View file

@ -3,11 +3,13 @@ package model
import "time"
type ScrobbleEntry struct {
MediaFile
ID string
Service string
UserID string `structs:"user_id"`
UserID string
PlayTime time.Time
EnqueueTime time.Time
MediaFileID string
MediaFile
}
type ScrobbleEntries []ScrobbleEntry