filiph / linkcheck

Fast link checker
https://pub.dartlang.org/packages/linkcheck
MIT License
397 stars 51 forks source link

Prepare for upcoming change to HttpRequest and HttpClientResponse #44

Closed tvolkert closed 5 years ago

tvolkert commented 5 years ago

An upcoming change to the Dart SDK will change HttpRequest and HttpClientResponse from implementing Stream<List<int>> to implementing Stream<Uint8List>.

This forwards-compatible change prepares for that SDK breaking change by casting the Stream to List<int> before transforming it.

https://github.com/dart-lang/sdk/issues/36900

tvolkert commented 5 years ago

ping @filiph

filiph commented 5 years ago

Thank you!