Adding submission=true to scrobble call

This commit is contained in:
simojenki
2021-03-17 18:51:48 +11:00
parent ec4453fac4
commit c9543be3e7
2 changed files with 3 additions and 1 deletions

View File

@@ -548,7 +548,7 @@ export class Navidrome implements MusicService {
},
scrobble: async (id: string) =>
navidrome
.post(credentials, `/rest/scrobble`, { id })
.post(credentials, `/rest/scrobble`, { id, submission: true })
.then((_) => true)
.catch(() => false),
};