From b4ec6a791d5adfef6738cf0f60575c6491d43543 Mon Sep 17 00:00:00 2001 From: Andrew Mathieu Date: Fri, 9 Sep 2022 03:10:22 +0200 Subject: [PATCH] Fix likes on touchbar (they were inverted) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When we tap on "👍", it doesn't leave a like but does the opposite --- plugins/touchbar/back.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/touchbar/back.js b/plugins/touchbar/back.js index acaee583..617682f5 100644 --- a/plugins/touchbar/back.js +++ b/plugins/touchbar/back.js @@ -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", () => {