[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.

feat: Log file cache save

FoxxMD (Sep 11, 2025, 7:14 PM UTC) e2c8158a 4eee6d43

+4 -1
+4 -1
src/backend/common/Cache.ts
··· 111 111 flatCache.off('error', onlySaveError); 112 112 flatCache.on('error', (e) => { 113 113 logger.warn(e); 114 - }) 114 + }); 115 + flatCache.on('save', () => { 116 + logger.debug('Saved cache to file'); 117 + }); 115 118 } catch (e) { 116 119 logger.warn(new Error(`Unable to use file cache at ${path.join(config.connection, 'mscache')}`, {cause: e})); 117 120 }