浏览代码

Check for cancellation in SaveMediaAttachments.

Andrew Mahone 5 年之前
父节点
当前提交
c2d8f210b1
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      Emby.Server.Implementations/Data/SqliteItemRepository.cs

+ 2 - 0
Emby.Server.Implementations/Data/SqliteItemRepository.cs

@@ -6201,6 +6201,8 @@ where AncestorIdText not null and ItemValues.Value not null and ItemValues.Type
                 throw new ArgumentNullException(nameof(attachments));
             }
 
+            cancellationToken.ThrowIfCancellationRequested();
+
             using var connection = GetConnection();
             connection.RunInTransaction(db =>
             {