Skip to content

Commit b4ec6a7

Browse files
Fix likes on touchbar (they were inverted)
When we tap on "👍", it doesn't leave a like but does the opposite
1 parent b843825 commit b4ec6a7

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)