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

docs: Fix bad config example for id on aio in 0.14.0 upgrade

FoxxMD (Jun 1, 2026, 7:37 PM UTC) dd54075c ff08b632

+17 -15
+17 -15
docsite/docs/updating/upgrade-path/0140.mdx
··· 75 75 76 76 Add an `id` to the top-level for each Source/Client configuration, next to `data`: 77 77 78 - ```json title="koito.json" 79 - [ 80 - { 81 - "name": "koito-source", 82 - "configureAs": "source", 83 - "type": "koito", 84 - // highlight-start 85 - "id": "myKoitoID", 86 - // highlight-end 87 - "data": { 88 - "token": "029b081ba-9156-4pe7-88e5-3be671f5ea2b", 89 - "username": "admin", 90 - "url": "http://192.168.0.100:4110" 78 + ```json title="config.json" 79 + { 80 + "sources": [ 81 + { 82 + "name": "koito-source", 83 + "configureAs": "source", 84 + "type": "koito", 85 + // highlight-start 86 + "id": "myKoitoID", 87 + // highlight-end 88 + "data": { 89 + "token": "029b081ba-9156-4pe7-88e5-3be671f5ea2b", 90 + "username": "admin", 91 + "url": "http://192.168.0.100:4110" 92 + } 91 93 } 92 - } 93 - ] 94 + ] 95 + } 94 96 ``` 95 97 96 98 </TabItem>