Skip to content

Commit

Permalink
Missing Session SaveAsync (#14921)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtkech authored Dec 19, 2023
1 parent 4520c45 commit 4f5d597
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ public virtual async ValueTask<long> RevokeByAuthorizationIdAsync(string identif
{
token.Status = Statuses.Revoked;

_session.Save(token, checkConcurrency: false, collection: OpenIdCollection);
await _session.SaveAsync(token, checkConcurrency: false, collection: OpenIdCollection);
}

await _session.SaveChangesAsync();
Expand Down

0 comments on commit 4f5d597

Please sign in to comment.