Fix likes on touchbar (they were inverted)

When we tap on "👍", it doesn't leave a like but does the opposite
This commit is contained in:
Andrew Mathieu
2022-09-09 03:10:22 +02:00
committed by GitHub
parent b843825f72
commit b4ec6a791d

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", () => {