Skip to content

Commit e8b0e14

Browse files
author
Casey Hillers
authored
Merge pull request #264 from passsy/state-only-once
Don't add state query param twice
2 parents 2844616 + 573a80c commit e8b0e14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/src/common/pulls_service.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class PullRequestsService extends Service {
3131

3232
return PaginationHelper(github).objects(
3333
'GET',
34-
'/repos/${slug.fullName}/pulls?state=$state',
34+
'/repos/${slug.fullName}/pulls',
3535
(dynamic i) => PullRequest.fromJson(i),
3636
pages: pages,
3737
params: params);

0 commit comments

Comments
 (0)