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
Shows that the imagery first receives a 307 Internal Redirect, and then redirects to the https URL, which works fine.
I think this is because when we fetchImage with preferImageBitmap, we will always try to fetch the image as a blob, since that allows the decode to happen off the main thread. So this fetchBlob code-path doesn't handle the redirect?
The text was updated successfully, but these errors were encountered:
Forum thread
This Sandcastle tries to load imagery via
http
.The browser will block the mixed content requests, so imagery does not load. However, turning off imagebitmap support by adding:
Shows that the imagery first receives a
307 Internal Redirect
, and then redirects to the https URL, which works fine.I think this is because when we
fetchImage
withpreferImageBitmap
, we will always try to fetch the image as a blob, since that allows the decode to happen off the main thread. So thisfetchBlob
code-path doesn't handle the redirect?The text was updated successfully, but these errors were encountered: