Skip to content

Commit 0063be0

Browse files
authored
Merge pull request #822 from andrew-mathieu/andrew-mathieu-patch-1
Fix likes on touchbar (they were inverted)
2 parents cc1c13c + b4ec6a7 commit 0063be0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/touchbar/back.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ const touchBar = new TouchBar({
5959
});
6060

6161
module.exports = (win) => {
62-
const { playPause, next, previous, like, dislike } = getSongControls(win);
62+
const { playPause, next, previous, dislike, like } = getSongControls(win);
6363

6464
// If the page is ready, register the callback
6565
win.once("ready-to-show", () => {

0 commit comments

Comments
 (0)