[scrobbles] Add raw data storage to Jellyfins scrobbles
All checks were successful
build & deploy / test (push) Successful in 1m46s
build & deploy / deploy (push) Has been skipped

This commit is contained in:
2026-03-08 17:00:25 -04:00
parent e3fb529419
commit 5b8559efd0
2 changed files with 86 additions and 1 deletions

View File

@ -160,7 +160,7 @@ def jellyfin_scrobble_media(post_data: dict, user_id: int) -> Optional[Scrobble]
source_id=post_data.get(JELLYFIN_POST_KEYS.get("MEDIA_SOURCE_ID")),
playback_position_seconds=playback_position_seconds,
status=playback_status,
log={"album": post_data.get("Album", "")},
log={"album": post_data.get("Album", ""), "raw_data": post_data},
)