2
0
cvium 1 жил өмнө
parent
commit
f2d7842563

+ 1 - 1
Emby.Server.Implementations/Data/SqliteItemRepository.cs

@@ -2066,7 +2066,7 @@ namespace Emby.Server.Implementations.Data
                     db =>
                     db =>
                     {
                     {
                         // First delete chapters
                         // First delete chapters
-                        var command = db.PrepareStatement($"delete from {ChaptersTableName} where ItemId=@ItemId");
+                        using var command = db.PrepareStatement($"delete from {ChaptersTableName} where ItemId=@ItemId");
                         command.TryBind("@ItemId", id);
                         command.TryBind("@ItemId", id);
                         command.ExecuteNonQuery();
                         command.ExecuteNonQuery();