| Index: pkg/http/lib/src/byte_stream.dart
|
| diff --git a/pkg/http/lib/src/byte_stream.dart b/pkg/http/lib/src/byte_stream.dart
|
| index 72a53a0e066fc5cc3726ad216d074fbe613add84..96af2216ab92752c3e8c331bdb24260d16fe75a0 100644
|
| --- a/pkg/http/lib/src/byte_stream.dart
|
| +++ b/pkg/http/lib/src/byte_stream.dart
|
| @@ -35,5 +35,5 @@ class ByteStream extends StreamView<List<int>> {
|
| toBytes().then((bytes) => decodeString(bytes, encoding));
|
|
|
| Stream<String> toStringStream([Encoding encoding=Encoding.UTF_8]) =>
|
| - mappedBy((bytes) => decodeString(bytes, encoding));
|
| + map((bytes) => decodeString(bytes, encoding));
|
| }
|
|
|