Skip to content

Commit

Permalink
Merge pull request #5146 from vikram-raj/odc-2666
Browse files Browse the repository at this point in the history
Bug 1826682: fix validation issue with bitbucket repository
  • Loading branch information
openshift-merge-robot committed Apr 22, 2020
2 parents da8d7dc + e351469 commit 629a509
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -48,7 +48,7 @@ export class BitbucketService extends BaseService {
repo_slug: this.metadata.repoName,
username: this.metadata.owner,
});
return data.name === this.metadata.repoName;
return data.name.toLocaleLowerCase() === this.metadata.repoName.toLocaleLowerCase();
} catch (e) {
return false;
}
Expand Down

0 comments on commit 629a509

Please sign in to comment.