[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.

fix(endpointlz): Mark play as new from source

May fix scrobble clients not refreshing when scrobbling old/offline plays #430

FoxxMD (Jan 5, 2026, 6:40 PM UTC) 46f4fbe5 a3110dbd

+3 -1
+3 -1
src/backend/sources/EndpointListenbrainzSource.ts
··· 76 76 static formatPlayObj(obj: ListenPayload, options: FormatPlayObjectOptions & { 77 77 nowPlaying?: boolean 78 78 } = {}): PlayObject { 79 - return listenPayloadToPlay(obj, options.nowPlaying); 79 + const play = listenPayloadToPlay(obj, options.nowPlaying); 80 + play.meta.newFromSource = true; 81 + return play; 80 82 } 81 83 82 84 getRecentlyPlayed = async (options = {}) => {