Unable to retrieve an Image from Collection Type

System Information
  • Strapi Version: v4.0.0
  • Operating System:
  • Database: SQLite
  • Node Version: v14.17.6

Hi!
im currently facing an issue while retrieving an Image from a Collection type.

Whenever making a request with:
const podcasts = await axios.get(
${process.env.REACT_APP_STRAPI_URL}/api/podcasts?sort=Episode:desc
);

Im only getting the following response, while the “thumbnail” entry is missing:
{
“id”: 2,
“attributes”: {
“Title”: “Test”,
“quelle”: null,
“apple”: null,
“Spotify”: null,
“google”: null,
“Beschreibung”: “Test”,
“createdAt”: “2021-12-02T13:25:20.385Z”,
“updatedAt”: “2021-12-02T13:25:24.319Z”,
“publishedAt”: “2021-12-02T13:25:24.318Z”,
“Episode”: 2
}
}.

Does anyone have a solution? In previous versions of Strapi (3.X), it worked perfectly.

Thanks for the help =D