Convert UpdateUser to solely async

This commit is contained in:
Patrick Barron
2021-04-10 16:59:41 -04:00
parent 8607b52541
commit 3ebc047434
4 changed files with 11 additions and 28 deletions

View File

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