Skip to content

Commit

Permalink
Merge pull request #822 from andrew-mathieu/andrew-mathieu-patch-1
Browse files Browse the repository at this point in the history
Fix likes on touchbar (they were inverted)
  • Loading branch information
th-ch authored Oct 9, 2022
2 parents cc1c13c + b4ec6a7 commit 0063be0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/touchbar/back.js
Original file line number Diff line number Diff line change
Expand Up @@ -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", () => {
Expand Down

0 comments on commit 0063be0

Please sign in to comment.