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
I am trying to fetch a video source, but because of CORS errors that are not fixable, I created a proxy controller on my backend, which fetches a request (that usually results in a CORS error) and returns the result (now without the CORS error).
But trying to overload the modifyRequest is not the most optimal solution, I see that a Range header is set, but I can't access it in the extended method. Without it, my proxy controller tries to download the whole file which is sub-optimal.
A simple fix like this would be good enough for me:
The
RequestModifier
looks like this:I am trying to fetch a video source, but because of CORS errors that are not fixable, I created a proxy controller on my backend, which fetches a request (that usually results in a CORS error) and returns the result (now without the CORS error).
But trying to overload the
modifyRequest
is not the most optimal solution, I see that aRange
header is set, but I can't access it in the extended method. Without it, my proxy controller tries to download the whole file which is sub-optimal.A simple fix like this would be good enough for me:
The text was updated successfully, but these errors were encountered: