Added support for "uploadedVideo" type
This commit is contained in:
parent
3674d89f74
commit
98bc2d60e9
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue