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)