[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): Ignore library response validation

As temporary fix for #314

FoxxMD (Jul 17, 2025, 1:24 PM UTC) 63cebf37 60f3f05f

+18
+18
patches/@lukehagar+plexjs+0.39.0.patch
··· 1 + diff --git a/node_modules/@lukehagar/plexjs/funcs/libraryGetAllLibraries.js b/node_modules/@lukehagar/plexjs/funcs/libraryGetAllLibraries.js 2 + index f586c1f..221851d 100644 3 + --- a/node_modules/@lukehagar/plexjs/funcs/libraryGetAllLibraries.js 4 + +++ b/node_modules/@lukehagar/plexjs/funcs/libraryGetAllLibraries.js 5 + @@ -102,9 +102,9 @@ async function $do(client, options) { 6 + const [result] = await M.match(M.json(200, operations.GetAllLibrariesResponse$inboundSchema, { 7 + key: "object", 8 + }), M.jsonErr(400, errors.GetAllLibrariesBadRequest$inboundSchema), M.jsonErr(401, errors.GetAllLibrariesUnauthorized$inboundSchema), M.fail("4XX"), M.fail("5XX"))(response, req, { extraFields: responseFields }); 9 + - if (!result.ok) { 10 + - return [result, { status: "complete", request: req, response }]; 11 + - } 12 + + // if (!result.ok) { 13 + + // return [result, { status: "complete", request: req, response }]; 14 + + // } 15 + return [result, { status: "complete", request: req, response }]; 16 + } 17 + //# sourceMappingURL=libraryGetAllLibraries.js.map 18 + \ No newline at end of file