[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(plex): Fix regression with allowing non-music when using librariesAllow

FoxxMD (Jul 14, 2025, 8:19 PM UTC) 80f8495f c6bb258b

+6 -3
+6 -3
src/backend/sources/PlexApiSource.ts
··· 248 248 return `media included in librariesBlock '${blockedLibrary.name}'`; 249 249 } 250 250 } 251 - } 252 251 253 - if(!this.getValidLibraries().some(x => state.play.meta.library === x.name)) { 254 - return `media not included in a valid library`; 252 + // this is inside this block because we SHOULD allow non-music libraries if 253 + // user specified name in librariesAllow 254 + // -- so only check for this if nothing is specified 255 + if(!this.getValidLibraries().some(x => state.play.meta.library === x.name)) { 256 + return `media not included in a valid library`; 257 + } 255 258 } 256 259 } 257 260