From af890a5c6c20277d12c6b295f14bf7db9970df21 Mon Sep 17 00:00:00 2001 From: Core <64542347+coredev-uk@users.noreply.github.com> Date: Sat, 29 Jan 2022 00:08:02 +0000 Subject: [PATCH] _songId because yeah --- src/preload/cider-preload.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/preload/cider-preload.js b/src/preload/cider-preload.js index f80dc7d6..d67f0dfd 100644 --- a/src/preload/cider-preload.js +++ b/src/preload/cider-preload.js @@ -51,8 +51,8 @@ const MusicKitInterop = { attributes.playParams = attributes?.playParams ?? {id: 'no-id-found'}; attributes.playParams.id = attributes?.playParams?.id ?? 'no-id-found'; attributes.url = { - cider: "cider://play/s/" + nowPlayingItem?.songId ?? 'no-id-found', - appleMusic: "https://music.apple.com/song/" + nowPlayingItem?.songId ?? 'no-id-found' + cider: "cider://play/s/" + nowPlayingItem?._songId ?? 'no-id-found', + appleMusic: "https://music.apple.com/song/" + nowPlayingItem?._songId ?? 'no-id-found' } if (attributes.playParams.id === 'no-id-found') { attributes.playParams.id = nowPlayingItem?.id ?? 'no-id-found';