Skip to content

Commit

Permalink
Fix the definition of what 50mb is
Browse files Browse the repository at this point in the history
  • Loading branch information
cmdcolin committed Nov 29, 2018
1 parent e31b6ab commit 2025dc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/JBrowse/Model/XHRBlob.js
Expand Up @@ -85,7 +85,7 @@ function fetchBinaryRange(url, start, end) {
}
const globalCache = new HttpRangeFetcher({
fetch: fetchBinaryRange,
size: 50 * 1024, // 50MB
size: 50 * 1024 * 1024, // 50MB
chunkSize: Math.pow(2,18), // 256KB
aggregationTime: 50,
})
Expand Down

0 comments on commit 2025dc0

Please sign in to comment.