Merge pull request #822 from andrew-mathieu/andrew-mathieu-patch-1

Fix likes on touchbar (they were inverted)
This commit is contained in:
th-ch
2022-10-09 11:55:45 +02:00
committed by GitHub

View File

@ -59,7 +59,7 @@ const touchBar = new TouchBar({
});
module.exports = (win) => {
const { playPause, next, previous, like, dislike } = getSongControls(win);
const { playPause, next, previous, dislike, like } = getSongControls(win);
// If the page is ready, register the callback
win.once("ready-to-show", () => {