[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: Fix play fetch options logging data for pageless functions

FoxxMD (Jul 15, 2026, 8:48 PM UTC) 3907fa54 a7b35933

+4 -4
+4 -4
src/backend/utils/ListenFetchUtils.ts
··· 33 33 const reqOptsHint: string[] = [ 34 34 ]; 35 35 if(currOpts.to !== undefined && currOpts.from !== undefined) { 36 - reqOptsHint.push(`Between ${todayAwareFormat(dayjs(currOpts.from))} and ${todayAwareFormat(dayjs(currOpts.to))}`); 37 - } else if(currOpts.to) { 38 - reqOptsHint.push(`Until ${todayAwareFormat(dayjs(currOpts.to))}`); 36 + reqOptsHint.push(`Between ${todayAwareFormat(dayjs.unix(currOpts.from))} and ${todayAwareFormat(dayjs.unix(currOpts.to))}`); 39 37 } else if(currOpts.to) { 40 - reqOptsHint.push(`From ${todayAwareFormat(dayjs(currOpts.from))}`); 38 + reqOptsHint.push(`Until ${todayAwareFormat(dayjs.unix(currOpts.to))}`); 39 + } else if(currOpts.from) { 40 + reqOptsHint.push(`From ${todayAwareFormat(dayjs.unix(currOpts.from))}`); 41 41 } 42 42 43 43 if(currOpts.limit !== undefined) {