Skip to content

Commit 383f5a8

Browse files
committed
Bugfix getOrgFullName
1 parent 9453eaa commit 383f5a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎lib/server-adobe-github/github.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ function getOrgFullName(orgName, orgs){
6464

6565
// Get real org name
6666
orgs.forEach(function(org){
67-
if(org.userName===orgName){
67+
if(org.userName.toLowerCase()===orgName.toLowerCase()){
6868
orgFullName=org.name;
6969
returnorgFullName;
7070
}

0 commit comments

Comments
(0)