Skip to content
This repository was archived by the owner on Sep 20, 2023. It is now read-only.

Commit 4de4c61

Browse files
committed
fix: update FetchRepositoryLabelsQuery call
1 parent 9fcd03e commit 4de4c61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Classes/Labels/GitHubClient+RepositoryLabels.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ extension GithubClient {
4343
nextPage: String?,
4444
completion: @escaping (Result<RepositoryLabelsPayload>) -> Void
4545
) {
46-
let query = FetchRepositoryLabelsQuery(owner: owner, name: repo, after: nextPage)
46+
let query = FetchRepositoryLabelsQuery(owner: owner, repo: repo, after: nextPage)
4747
client.query(query, result: { $0 }, completion: { result in
4848

4949
switch result {

0 commit comments

Comments
 (0)