From c77ec54035640e3c390c27b19cae1e2b24701a7d Mon Sep 17 00:00:00 2001 From: Robert McRackan Date: Fri, 24 Sep 2021 19:59:57 -0400 Subject: [PATCH] bug fix: DownloadEpisodes logic needs parans --- FileLiberator/IProcessableExt.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FileLiberator/IProcessableExt.cs b/FileLiberator/IProcessableExt.cs index 0e06618c..2e6a7b9e 100644 --- a/FileLiberator/IProcessableExt.cs +++ b/FileLiberator/IProcessableExt.cs @@ -14,7 +14,7 @@ namespace FileLiberator public static IEnumerable GetValidLibraryBooks(this IProcessable processable, IEnumerable library) => library.Where(libraryBook => processable.Validate(libraryBook) - && libraryBook.Book.ContentType != ContentType.Episode || FileManager.Configuration.Instance.DownloadEpisodes + && (libraryBook.Book.ContentType != ContentType.Episode || FileManager.Configuration.Instance.DownloadEpisodes) ); public static async Task ProcessSingleAsync(this IProcessable processable, LibraryBook libraryBook, bool validate)