You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a related property is not available, the app tends to freeze or components will not show up.
This already happens when an object is destroyed but is still refered to on another object (see #77 ), or might happen when loading objects is stuck (for example, due to a network error, see #65).
Once we have #75 merged, this will only become more common, since we won't know the order in which objects are added to the store.
Proposed changes
provide a fallback in components (TrackGenres, TrackArtists and AlbumArtists) so that they get displayed even if some of the related objects are missing.
provide a fallback in getters (most notably Tracks/tracksByAlbumAndNumber where most of the critical errors seem to occur) so that it will always output something
The text was updated successfully, but these errors were encountered:
If a related property is not available, the app tends to freeze or components will not show up.
This already happens when an object is destroyed but is still refered to on another object (see #77 ), or might happen when loading objects is stuck (for example, due to a network error, see #65).
Once we have #75 merged, this will only become more common, since we won't know the order in which objects are added to the store.
Proposed changes
TrackGenres
,TrackArtists
andAlbumArtists
) so that they get displayed even if some of the related objects are missing.Tracks/tracksByAlbumAndNumber
where most of the critical errors seem to occur) so that it will always output somethingThe text was updated successfully, but these errors were encountered: