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
For some reason when using chrome and any other chromium-based browser like Brave, Edge, etc we are not able to download files from offsite and it just gives a No file error however the same download works fine on Firefox.
This error won't happen if the response code for the download is 200 instead of 206.
However, without the 206 response code we are not able to support resumable downloads.
Currently, in order to bypass the issue, we just inspect the user-agent request header and return a 200 response code instead of 206 whenever we detect a chromium-based user agent.
This works but the drawback is downloads cannot be paused/resumed on chromium-based browsers also while streaming user can't skip to any position in the video.
The text was updated successfully, but these errors were encountered:
For some reason when using chrome and any other chromium-based browser like Brave, Edge, etc we are not able to download files from offsite and it just gives a
No file
error however the same download works fine on Firefox.This error won't happen if the response code for the download is
200
instead of206
.However, without the
206
response code we are not able to support resumable downloads.Currently, in order to bypass the issue, we just inspect the
user-agent
request header and return a200
response code instead of206
whenever we detect a chromium-based user agent.This works but the drawback is downloads cannot be paused/resumed on chromium-based browsers also while streaming user can't skip to any position in the video.
The text was updated successfully, but these errors were encountered: