[READ-ONLY] Mirror of https://github.com/FoxxMD/multi-scrobbler. Scrobble plays from multiple sources to multiple clients docs.multi-scrobbler.app
deezer docker jellyfin koito lastfm listenbrainz maloja mopidy mpris music music-assistant plex scrobble self-hosted spotify subsonic tautulli youtube-music
0

Configure Feed

Select the types of activity you want to include in your feed.

test(database): Fix play fixture assignment of updatedAt

FoxxMD (May 6, 2026, 4:12 PM UTC) 5eb967f6 0bf9d5e7

+1 -1
+1 -1
src/backend/tests/utils/databaseFixtures.ts
··· 22 22 play = generatePlay(), 23 23 ...rest 24 24 } = data; 25 - return generatePlayEntity(play, {seenAt: play.data.playDate, ...rest}); 25 + return generatePlayEntity(play, {seenAt: play.meta.seenAt ?? play.data.playDate, updatedAt: play.meta.seenAt ?? play.data.playDate, ...rest}); 26 26 } 27 27 28 28 export const fixtureCreateInput = (data: PlayInputNew & { data?: object | false }): PlayInputNew => {