1
0
mirror of https://github.com/bitwarden/server synced 2025-12-17 16:53:23 +00:00

Fix EF bugs (#1791)

This commit is contained in:
Justin Baur
2022-01-13 15:38:05 -05:00
committed by GitHub
parent 2ed588d005
commit 486845242f
2 changed files with 8 additions and 7 deletions

View File

@@ -29,7 +29,7 @@ namespace Bit.Infrastructure.EntityFramework.Repositories.Queries
SsoExternalId = x.su.ExternalId,
Permissions = x.ou.Permissions,
ResetPasswordKey = x.ou.ResetPasswordKey,
UsesKeyConnector = x.u.UsesKeyConnector,
UsesKeyConnector = x.u != null && x.u.UsesKeyConnector,
});
}
}