From 64499a376df313f08df1669782f042a912751794 Mon Sep 17 00:00:00 2001 From: Kenneth Endfinger Date: Sat, 23 Aug 2014 18:49:33 -0400 Subject: [PATCH] Fix Major Bug in Release API --- lib/src/common/github.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/common/github.dart b/lib/src/common/github.dart index fb94c304..8a1172ec 100644 --- a/lib/src/common/github.dart +++ b/lib/src/common/github.dart @@ -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))); }); }