Skip to content

Commit

Permalink
fix for GetRecoveryKeys userID overload failing because it was lookin…
Browse files Browse the repository at this point in the history
…g for the ID from a navigation property instead of directly
  • Loading branch information
GNUGradyn committed Jun 9, 2024
1 parent 1fefd36 commit 6a31039
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion JournalyApiV2/Services/DAL/AuthDbService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ public async Task<CryptographicKey[]> GetRecoveryKeys(Guid userId)
{
DEK = x.DEK,
Salt = x.Salt,
Type = (int)x.Type.Id
Type = x.EncryptedDEKTypeId
}).ToArray();
}

Expand Down

0 comments on commit 6a31039

Please sign in to comment.