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 ecceba4 commit fbb4aaeCopy full SHA for fbb4aae
app/lib/package/tarball_storage.dart
@@ -83,7 +83,7 @@ class TarballStorage {
83
if (!md5hash.byteToByteEquals(info.md5Hash)) {
84
return ContentMatchStatus.different;
85
}
86
- // limit memory use while doing the byte-to-byte comparison
+ // Limit memory use while doing the byte-to-byte comparison by streaming it chunk-wise.
87
final raf = await file.open();
88
var remainingLength = info.length;
89
try {
0 commit comments