[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(rocksky): Increase scrobble delay to respect PDS operation limits

FoxxMD (Nov 18, 2025, 2:45 PM UTC) ec4c2cdd 88d3e13b

+2
+2
src/backend/scrobblers/RockskyScrobbler.ts
··· 30 30 // 1000 is way too high. maxing at 100 31 31 this.MAX_INITIAL_SCROBBLES_FETCH = 100; 32 32 this.supportsNowPlaying = false; 33 + // PDS rate limit for operations is ~2/sec 34 + this.scrobbleDelay = 2000; 33 35 } 34 36 35 37 formatPlayObj = (obj: any, options: FormatPlayObjectOptions = {}) => ListenbrainzApiClient.formatPlayObj(obj, options);