your_spotify
your_spotify copied to clipboard
Dashboard blank
Describe the bug
The dashboard loads but after some time it turns blank.
Expected behavior
Dashboard keeps working
Additional context
The frontend (browser console) has the following issue:
Uncaught TypeError: can't access property "map", r is undefined
This is the relevant code snipped
<div className={clsx("otext", s.names)}>
<InlineTrack track={track} element="div" />
<div className="subtitle">
{artists.map((art, k, a) => (
<Fragment key={art.id}>
<InlineArtist artist={art} noStyle />
{k !== a.length - 1 && ", "}
</Fragment>
))}
</div>
</div>
I assume artists is undefined for whatever reason
This issue arised after upgrading to 1.15 - 1.14 worked fine.
Screenshots
Shared link I can't :(