Skip to content
This repository has been archived by the owner on Feb 19, 2020. It is now read-only.

Commit

Permalink
fix issue #20
Browse files Browse the repository at this point in the history
  • Loading branch information
koudle committed Nov 22, 2018
1 parent 3478638 commit a04463e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/src/examples/http_proxy_repository.dart
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class HttpProxyRepository extends PackageRepository {

http.Response response = await client.get(versionUrl);
var json = convert.json.decode(response.body);
var versions = json['versions'] as List<Map>;
var versions = json['versions'] as List<dynamic>;
if (versions != null) {
for (var item in versions) {
var pubspec = item['pubspec'];
Expand Down

0 comments on commit a04463e

Please sign in to comment.