We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecce093 commit e479c7bCopy full SHA for e479c7b
web-app/src/screens/Console/Buckets/ListBuckets/Objects/utils.ts
@@ -96,8 +96,8 @@ export const download = (
96
path = path.concat(`&version_id=${versionID}`);
97
}
98
99
- // If file is greater than 50GiB then we force browser download, if not then we use HTTP Request for Object Manager
100
- if (fileSize > 53687091200) {
+ // If file is greater than 5GiB then we force browser download, if not then we use HTTP Request for Object Manager
+ if (fileSize > 5368709120) {
101
return new BrowserDownload(path, id, completeCallback, toastCallback);
102
103
0 commit comments