From 98bc2d60e9ce19689bbda0012f8c0b64e989c0b9 Mon Sep 17 00:00:00 2001 From: booploops <49113086+booploops@users.noreply.github.com> Date: Tue, 7 Dec 2021 00:18:39 -0800 Subject: [PATCH] Added support for "uploadedVideo" type --- resources/cider-ui-tests/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/cider-ui-tests/index.js b/resources/cider-ui-tests/index.js index 4f62242d..ea893bfb 100644 --- a/resources/cider-ui-tests/index.js +++ b/resources/cider-ui-tests/index.js @@ -209,7 +209,7 @@ const app = new Vue({ this.mk.addEventListener(MusicKit.Events.nowPlayingItemDidChange, (a) => { let type = (self.mk.nowPlayingItem != null) ? self.mk.nowPlayingItem["type"] ?? '' : ''; - if (type.includes("musicVideo")){ + if (type.includes("musicVideo") || type.includes("uploadedVideo")){ document.getElementById("apple-music-video-container").style.display = "block"; // app.chrome.topChromeVisible = false } else {