Skip to content

Commit fbb4aae

Browse files
isoossigurdm
andauthored
Update app/lib/package/tarball_storage.dart
Co-authored-by: Sigurd Meldgaard <[email protected]>
1 parent ecceba4 commit fbb4aae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/lib/package/tarball_storage.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ class TarballStorage {
8383
if (!md5hash.byteToByteEquals(info.md5Hash)) {
8484
return ContentMatchStatus.different;
8585
}
86-
// limit memory use while doing the byte-to-byte comparison
86+
// Limit memory use while doing the byte-to-byte comparison by streaming it chunk-wise.
8787
final raf = await file.open();
8888
var remainingLength = info.length;
8989
try {

0 commit comments

Comments
 (0)