[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): clarify timestamp calculation logic

Updated comments in applyCalculatedTimestamps to reflect that Apple Music lacks track timestamps, necessitating a hacky estimation method.

Exerra (Jul 14, 2026, 12:48 AM +0300) 1698c5d7 765d86e0

+2 -2
+2 -2
src/backend/sources/AppleMusicSource.ts
··· 169 169 } 170 170 } 171 171 } 172 - 173 - // Extract the reduceRight logic: 172 + 173 + // Apple Music does not provide timestamps for recently played tracks, so hacky method 174 174 private applyCalculatedTimestamps(plays: PlayObject[]): PlayObject[] { 175 175 let durSinceNow = 0; 176 176 const now = dayjs();