[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(webscrobbler): Convert express wildcard path to regex

New path wildcard from expressjs 5 doesn't seem to work. Use tried and try regex instead

Fixes #583

FoxxMD (May 4, 2026, 2:01 PM UTC) 4d7eadbd 747b6228

+1 -1
+1 -1
src/backend/server/webscrobblerRoutes.ts
··· 31 31 }, 32 32 cors(corsOpts)); 33 33 34 - app.post('/api/webscrobbler*path', 34 + app.post(/api\/webscrobbler\/?.*/, 35 35 async (req, res, next) => { 36 36 webhookIngress.trackIngress(req, true); 37 37 next();