fix(remote): proper image when mpris and remote interleave

This commit is contained in:
Kendall Garner
2026-01-18 18:18:36 -08:00
parent 1c6ee88912
commit 04f7c7fdd4
4 changed files with 11 additions and 6 deletions
+2 -2
View File
@@ -73,8 +73,8 @@ const updateShuffle = (shuffle: boolean) => {
ipcRenderer.send('update-shuffle', shuffle);
};
const updateSong = (args: QueueSong | undefined) => {
ipcRenderer.send('update-song', args);
const updateSong = (song: QueueSong | undefined, imageUrl?: null | string) => {
ipcRenderer.send('update-song', song, imageUrl);
};
const updateUsername = (username: string) => {