diff options
| author | Patrick Barron <18354464+barronpm@users.noreply.github.com> | 2021-06-25 21:13:38 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-25 21:13:38 -0400 |
| commit | befedaf6fc70456557de71b9d1d223f669e5c22b (patch) | |
| tree | b55bffbf38db054ebe3f3fe7e5a4d4396fa1f4bc | |
| parent | dbfd30ec4c33bb014d987e3bcb2e7a73a5389c15 (diff) | |
Update Emby.Server.Implementations/Session/SessionManager.cs
Co-authored-by: Cody Robibero <cody@robibe.ro>
| -rw-r--r-- | Emby.Server.Implementations/Session/SessionManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Session/SessionManager.cs b/Emby.Server.Implementations/Session/SessionManager.cs index 40a346e95..9dada44cb 100644 --- a/Emby.Server.Implementations/Session/SessionManager.cs +++ b/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) { |
