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
Trying to deserialize an episode from the data provided in /playlists/{}/tracks results in a serde error data did not match any variant of untagged enum. This is because the returned episode is missing the description field of FullEpisode.
I tried to add description to fields but the api seems to ignore it.
The only fix I see is to remove description from SimplifiedEpisode and make PlayableItem contain the simplified version.
The text was updated successfully, but these errors were encountered:
Trying to deserialize an episode from the data provided in
/playlists/{}/tracks
results in a serde errordata did not match any variant of untagged enum
. This is because the returned episode is missing thedescription
field ofFullEpisode
.I tried to add description to
fields
but the api seems to ignore it.The only fix I see is to remove
description
fromSimplifiedEpisode
and makePlayableItem
contain the simplified version.The text was updated successfully, but these errors were encountered: