Update Emby.Server.Implementations/Session/SessionManager.cs

Co-authored-by: Cody Robibero <cody@robibe.ro>
This commit is contained in:
Patrick Barron 2021-06-25 21:13:38 -04:00 committed by GitHub
parent dbfd30ec4c
commit befedaf6fc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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)
{