mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-18 14:46:46 +01:00
backport changes from #16835
This commit is contained in:
@@ -271,9 +271,9 @@ namespace Emby.Server.Implementations.Session
|
||||
user.LastActivityDate = activityDate;
|
||||
await _userManager.UpdateUserAsync(user).ConfigureAwait(false);
|
||||
}
|
||||
catch (DbUpdateConcurrencyException e)
|
||||
catch (DbUpdateConcurrencyException)
|
||||
{
|
||||
_logger.LogDebug(e, "Error updating user's last activity date.");
|
||||
_logger.LogDebug("Error updating user's last activity date due to concurrency conflict. This is an expected event.");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user