From b278dcf475c8914b40d9cc166753254c427f69bc Mon Sep 17 00:00:00 2001 From: JPVenson Date: Thu, 14 May 2026 13:08:24 +0000 Subject: [PATCH] revert change --- .../Jellyfin.Database.Implementations/JellyfinDbContext.cs | 5 ----- 1 file changed, 5 deletions(-) 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.");