소스 검색

fix(collection): Do not lock newly created collections (#14259)

Dario Ackermann 1 주 전
부모
커밋
d4c3d24e52
2개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 0
      CONTRIBUTORS.md
  2. 0 1
      Emby.Server.Implementations/Library/Validators/CollectionPostScanTask.cs

+ 1 - 0
CONTRIBUTORS.md

@@ -27,6 +27,7 @@
  - [cryptobank](https://github.com/cryptobank)
  - [cvium](https://github.com/cvium)
  - [dannymichel](https://github.com/dannymichel)
+ - [darioackermann](https://github.com/darioackermann)
  - [DaveChild](https://github.com/DaveChild)
  - [DavidFair](https://github.com/DavidFair)
  - [Delgan](https://github.com/Delgan)

+ 0 - 1
Emby.Server.Implementations/Library/Validators/CollectionPostScanTask.cs

@@ -125,7 +125,6 @@ public class CollectionPostScanTask : ILibraryPostScanTask
                         boxSet = await _collectionManager.CreateCollectionAsync(new CollectionCreationOptions
                         {
                             Name = collectionName,
-                            IsLocked = true
                         }).ConfigureAwait(false);
 
                         await _collectionManager.AddToCollectionAsync(boxSet.Id, movieIds).ConfigureAwait(false);