Skip to content

Commit 23aa9fb

Browse files
fix: bug in implementation of alphabetical argument
1 parent b07e734 commit 23aa9fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/github.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ get_gh_code_contributors <- function (org, repo, alphabetical = FALSE) {
137137
)
138138

139139
if (alphabetical) {
140-
out [order (res$login), ]
140+
out [order (out$logins), ]
141141
} else {
142142
out
143143
}

0 commit comments

Comments
 (0)