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

refactor(AppleMusicSource): use HistoryConsistencyResult type alias

Update parseRecentAgainstResponse return type signature to use the HistoryConsistencyResult alias instead of an inline object definition.

Exerra (Jul 14, 2026, 12:50 AM +0300) cae84502 1698c5d7

+1 -1
+1 -1
src/backend/sources/AppleMusicSource.ts
··· 188 188 }, [] as PlayObject[]); 189 189 } 190 190 191 - parseRecentAgainstResponse = (responsePlays: PlayObject[]): {plays: PlayObject[], consistent: boolean} => { 191 + parseRecentAgainstResponse = (responsePlays: PlayObject[]): HistoryConsistencyResult => { 192 192 193 193 let results: {plays: PlayObject[], consistent: boolean} = { 194 194 plays: [],