mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-15 03:30:39 +03:00
Fix console error "Cannot convert undefined or null to object PlaylistsSubMenu"
This commit is contained in:
parent
63b5191ea7
commit
fbd87ba577
@ -78,7 +78,7 @@ const PlaylistsSubMenu = ({ state, setState, sidebarIsOpen, dense }) => {
|
||||
const myPlaylists = []
|
||||
const sharedPlaylists = []
|
||||
|
||||
if (loaded) {
|
||||
if (loaded && data) {
|
||||
const allPlaylists = Object.keys(data).map((id) => data[id])
|
||||
|
||||
allPlaylists.forEach((pls) => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user