Using
await fetch(url)
to get a png image from the web (which succeeds, as the resulting response has normal status (OK), content-length is 46653, etc.
Using .json() complains rightly that it’s not a json-formatted response, but .blob is undefined, and .arrayBuffer() just returns empty.
So I’m suspecting that Xd’s fetch isn’t a full implementation? Can you confirm?
This is a real problem if so.