Skip to content

Commit

Permalink
Fix Major Bug in Release API
Browse files Browse the repository at this point in the history
  • Loading branch information
azenla committed Aug 23, 2014
1 parent 9a4e1e9 commit 64499a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/common/github.dart
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ class GitHub {
for (var response in responses) {
list.addAll(JSON.decode(response.body));
}
return new List.from(list.map((it) => Repository.fromJSON(this, it)));
return new List.from(list.map((it) => Release.fromJSON(this, it)));
});
}

Expand Down

0 comments on commit 64499a3

Please sign in to comment.