[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(listenbrainz): Fix play fetch more indicator

latest_listen_ts is *always* the latest of *all-time*, not for the current min/max_ts range requested.

Instead, use count < than desired (and non-zero) to indicate more results

FoxxMD (Jul 15, 2026, 8:49 PM UTC) e804ce33 3907fa54

+1 -1
+1 -1
src/backend/common/vendor/ListenbrainzApiClient.ts
··· 289 289 290 290 try { 291 291 const lr = await this.getUserListens({...lzListensOptions, user}); 292 - const more = to > lr.latest_listen_ts; 292 + const more = lr.count > 0 && lr.count === lzListensOptions.count; 293 293 return {data: lr.listens.map(x => listenResponseToPlay(x)), meta: {...options, total: lr.count, more}}; 294 294 } catch (e) { 295 295 throw e;