Refactor scrobbling code and add Music
If you send Track data from the Jellyfin Webhook plugin, we'll do the right thing with it. Lots more to do to clean this up, but it also involved moduralizing the code for scrobbling so it's a little simpler to understand what's going on.
This commit is contained in:
@ -6,8 +6,9 @@ from scrobbles.models import Scrobble
|
||||
class ScrobbleAdmin(admin.ModelAdmin):
|
||||
date_hierarchy = "timestamp"
|
||||
list_display = (
|
||||
"video",
|
||||
"timestamp",
|
||||
"video",
|
||||
"track",
|
||||
"source",
|
||||
"playback_position",
|
||||
"in_progress",
|
||||
|
||||
Reference in New Issue
Block a user