Skip to content

Commit c5a43bd

Browse files
Temp fix: remove empty GitHub Id
* 'temp' as this commit will not be needed with some upcoming changes
1 parent a08dc89 commit c5a43bd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

source/Gttsb.Core/GroupSyncer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ private async Task<GroupSyncResult> SyncronizeGroupsAsync(string gitHubOrg, IEnu
8484
m.DisplayName,
8585
m.Email,
8686
GitHubId = _emailToGitHubIdConverter.ToId(m.Email)
87-
});
87+
}).Where(u => !string.IsNullOrWhiteSpace(u.GitHubId)).ToList();
8888

8989
// Check if user is valid
9090
var validUsersForTeam = new List<ValidGitHubId>();

0 commit comments

Comments
 (0)