File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ class RepositoriesService extends Service {
63
63
.listen ((http.Response response) {
64
64
var list = JSON .decode (response.body);
65
65
var repos = new List .from (
66
- list.map ((it) => Repository .fromJSON (_github, it)));
66
+ list.map ((it) => Repository .fromJSON (it)));
67
67
for (var repo in repos) controller.add (repo);
68
68
});
69
69
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import "package:github/server.dart";
3
3
void main () {
4
4
var github = createGitHubClient ();
5
5
6
- github.repositories.listPublicRepositories (limit: 10 ).listen ((repo) {
6
+ github.repositories.listPublicRepositories (limit: 50 ).listen ((repo) {
7
7
print ("-> ${repo .fullName }" );
8
8
}).onDone (() => github.dispose ());
9
9
}
You can’t perform that action at this time.
0 commit comments