[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(chrome): Fix ENV names

FoxxMD (Jan 12, 2024, 10:14 AM EST) ee7ebb15 f47a6606

+5 -5
+5 -5
src/backend/sources/ScrobbleSources.ts
··· 328 328 case 'chromecast': 329 329 const ccShouldUse = parseBool(process.env.CC_ENABLE); 330 330 const cc = { 331 - blacklistDevices: process.env.WS_BLACKLIST_DEVICES, 332 - whitelistDevices: process.env.WS_WHITELIST_DEVICES, 333 - blacklistApps: process.env.WS_BLACKLIST_APPS, 334 - whitelistApps: process.env.WS_WHITELIST_APPS 331 + blacklistDevices: process.env.CC_BLACKLIST_DEVICES, 332 + whitelistDevices: process.env.CC_WHITELIST_DEVICES, 333 + blacklistApps: process.env.CC_BLACKLIST_APPS, 334 + whitelistApps: process.env.CC_WHITELIST_APPS 335 335 } 336 - if (!Object.values(ws).every(x => x === undefined) || ccShouldUse) { 336 + if (!Object.values(cc).every(x => x === undefined) || ccShouldUse) { 337 337 configs.push({ 338 338 type: 'chromecast', 339 339 name: 'unnamed',