Browse Source

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

Co-authored-by: Cody Robibero <cody@robibe.ro>
Patrick Barron 4 years ago
parent
commit
befedaf6fc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Emby.Server.Implementations/Session/SessionManager.cs

+ 1 - 1
Emby.Server.Implementations/Session/SessionManager.cs

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