Skip to content

Commit

Permalink
refactor: Fix compile issue
Browse files Browse the repository at this point in the history
  • Loading branch information
sventorben committed Jun 10, 2024
1 parent 834604e commit 500ddb1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public List<IdentityProviderModel> withMatchingDomain(AuthenticationFlowContext
if (org != null && org.isEnabled()) {
boolean verified = org.getDomains()
.filter(it -> domain.getRawValue().equalsIgnoreCase(it.getName()))
.anyMatch(OrganizationDomainModel::getVerified);
.anyMatch(OrganizationDomainModel::isVerified);
if (verified) {
return org.getIdentityProviders()
.filter(IdentityProviderModel::isEnabled)
Expand Down

0 comments on commit 500ddb1

Please sign in to comment.