[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 missing early return for skipped stage

FoxxMD (Jul 14, 2026, 1:47 PM UTC) a696436a fab2e493

+2 -1
+2 -1
src/backend/common/AbstractComponent.ts
··· 473 473 step.flowReason = skipMsg; 474 474 475 475 logger.debug(merged, skipMsg); 476 + return [step, playTruth]; 476 477 } else { 477 478 step.flowResult = onFailure; 478 479 let reason: string; ··· 520 521 delete newTransformedPlay.meta.lifecycleInputs; 521 522 } 522 523 523 - return [step, newTransformedPlay]; 524 + return [step, newTransformedPlay ?? playTruth]; 524 525 } 525 526 526 527 public abstract getRunningState(): ComponentState