Index: utils/archive/input_stream.dart |
diff --git a/utils/archive/input_stream.dart b/utils/archive/input_stream.dart |
index 877c769bcee236765757fdadc66deb644eb0d4aa..5f45fbd1d1cfea3d0487b641f4b3bcaebd738b8f 100644 |
--- a/utils/archive/input_stream.dart |
+++ b/utils/archive/input_stream.dart |
@@ -72,7 +72,7 @@ class ArchiveInputStream { |
var result = <Future<CompleteArchiveEntry>>[]; |
this.onEntry = (entry) => result.add(entry.readAll()); |
- this.onError = (e, stack) => completer.completeException(e, stack); |
+ this.onError = (e, stack) => completer.completeError(e, stack); |
this.onClosed = () => completer.complete(result); |
return completer.future.then(Futures.wait); |