diff options
| author | Patrick Barron <barronpm@gmail.com> | 2021-06-27 16:46:09 -0400 |
|---|---|---|
| committer | Patrick Barron <barronpm@gmail.com> | 2021-06-27 16:46:09 -0400 |
| commit | 06d682c29679d904bc1b21aa493bb9ed29bda265 (patch) | |
| tree | 2669aa4c4481aa3c70147b52c245824e3ea4b873 /Emby.Server.Implementations/Session | |
| parent | af2e7aec2ecff589c91b8064b1dff2ff5afcf172 (diff) | |
| parent | 5d1139ec62ff0c177e45574a6c3ce7ecf51aff57 (diff) | |
Merge remote-tracking branch 'origin/authenticationdb-efcore' into authenticationdb-efcore
Diffstat (limited to 'Emby.Server.Implementations/Session')
| -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 ac730fa43..ea710013e 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) { |
