your_spotify icon indicating copy to clipboard operation
your_spotify copied to clipboard

Dashboard blank

Open MeikelLP opened this issue 1 month ago • 0 comments

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

Image

Shared link I can't :(

MeikelLP avatar Dec 10 '25 09:12 MeikelLP