diff --git a/src/Jellyfin.Database/Jellyfin.Database.Implementations/JellyfinDbContext.cs b/src/Jellyfin.Database/Jellyfin.Database.Implementations/JellyfinDbContext.cs index ef147d5b33..14c4207c90 100644 --- a/src/Jellyfin.Database/Jellyfin.Database.Implementations/JellyfinDbContext.cs +++ b/src/Jellyfin.Database/Jellyfin.Database.Implementations/JellyfinDbContext.cs @@ -294,11 +294,6 @@ public class JellyfinDbContext(DbContextOptions options, ILog }); return result; } - catch (DbUpdateConcurrencyException) - { - // a concurrency exception is supposed to be always handled by the invoker of the method, logging it here is only causing log bloat. - throw; - } catch (Exception e) { logger.LogError(e, "Error trying to save changes.");