Skip to content

Commit 374d076

Browse files
authored
fix: fixed thrown error message (#280)
This accidentally got in as I was copypasting code as part of #277
1 parent 74f3b71 commit 374d076

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/repo/github.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ function getContributorsPage(githubUrl, optionalPrivateToken) {
5353
headers: getFetchHeaders(optionalPrivateToken),
5454
}).then(res => {
5555
if (res.status === 404 || res.status >= 500) {
56-
throw new Error('No contributors found on the GitLab repository')
56+
throw new Error('No contributors found on the GitHub repository')
5757
}
5858

5959
return res.json().then(body => {

0 commit comments

Comments
 (0)