Merge pull request #960 from umbreon22/check-now-playing-container-for-context-menu
Fix now playing context menu not rendering from 'songs' page
This commit is contained in:
commit
8f883c21d3
1 changed files with 2 additions and 1 deletions
|
@ -4019,7 +4019,8 @@ const app = new Vue({
|
|||
}
|
||||
}
|
||||
|
||||
if (app.mk.nowPlayingItem._container["attributes"] && app.mk.nowPlayingItem._container.name != "station") {
|
||||
const nowPlayingContainer = app.mk.nowPlayingItem._container;
|
||||
if (nowPlayingContainer && nowPlayingContainer["attributes"] && nowPlayingContainer.name != "station") {
|
||||
menus.normal.items.find(x => x.id == "showInMusic").hidden = false
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue