diff --git a/src/renderer/features/sidebar/components/sidebar-playlist-list.tsx b/src/renderer/features/sidebar/components/sidebar-playlist-list.tsx index 2592e191..c5aa5f8b 100644 --- a/src/renderer/features/sidebar/components/sidebar-playlist-list.tsx +++ b/src/renderer/features/sidebar/components/sidebar-playlist-list.tsx @@ -172,7 +172,7 @@ export const SidebarPlaylistList = ({ data }: SidebarPlaylistListProps) => { const shared: Playlist[] = []; for (const playlist of data.items) { - if (playlist.owner !== username) { + if (playlist.owner && playlist.owner !== username) { shared.push(playlist); } else { owned.push(playlist);