Fixed manage collections not being toggleable (#1813)

This commit is contained in:
Joe Milazzo 2023-02-19 14:12:12 -06:00 committed by GitHub
parent 0f042a23eb
commit 8aee5b3e08
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 8 additions and 8 deletions

View file

@ -334,7 +334,7 @@ public class LibraryController : BaseApiController
library.IncludeInDashboard = dto.IncludeInDashboard;
library.IncludeInRecommended = dto.IncludeInRecommended;
library.IncludeInSearch = dto.IncludeInSearch;
library.ManageCollections = dto.CreateCollections;
library.ManageCollections = dto.ManageCollections;
_unitOfWork.LibraryRepository.Update(library);