update album play count

This commit is contained in:
Kendall Garner 2024-09-15 21:48:32 -07:00
parent f82889e5ec
commit 96b4f8dd89
No known key found for this signature in database
GPG key ID: 18D2767419676C87
3 changed files with 39 additions and 6 deletions

View file

@ -25,7 +25,7 @@ export const useSendScrobble = (options?: MutationOptions) => {
// Manually increment the play count for the song in the queue if scrobble was submitted
if (variables.query.submission) {
incrementPlayCount([variables.query.id]);
sendPlayEvent([variables.query.id]);
sendPlayEvent(variables.query.id);
}
},
...options,