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

Commit

Permalink
Merge pull request #25 from koudle/fix-issue20-branch
Browse files Browse the repository at this point in the history
fix issue #20
  • Loading branch information
jonasfj committed Jan 24, 2019
2 parents 42b293f + 578d241 commit 416c52c
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 416c52c

Please sign in to comment.