diff --git a/src/backends/github/API.js b/src/backends/github/API.js index a4157bb8..68ed693f 100644 --- a/src/backends/github/API.js +++ b/src/backends/github/API.js @@ -23,7 +23,7 @@ export default class API { return this.request('/user/repos').then((repos) => { let contributor = false for (const repo of repos) { - if (repo.full_name === this.repo && repo.permissions.push) contributor = true; + if (repo.full_name.toLowerCase() === this.repo.toLowerCase() && repo.permissions.push) contributor = true; } return contributor; }).catch((error) => {