Merge remote-tracking branch 'origin/authenticationdb-efcore' into authenticationdb-efcore

This commit is contained in:
Patrick Barron
2021-06-27 16:46:09 -04:00
3 changed files with 28 additions and 3 deletions

View File

@@ -293,7 +293,7 @@ namespace Emby.Server.Implementations.Session
try
{
user.LastActivityDate = activityDate;
await _userManager.UpdateUserAsync(user);
await _userManager.UpdateUserAsync(user).ConfigureAwait(false);
}
catch (DbUpdateConcurrencyException e)
{