diff --git a/Source/DtoImporterService/LibraryBookImporter.cs b/Source/DtoImporterService/LibraryBookImporter.cs index 58583be2..cc3b09e7 100644 --- a/Source/DtoImporterService/LibraryBookImporter.cs +++ b/Source/DtoImporterService/LibraryBookImporter.cs @@ -109,7 +109,7 @@ namespace DtoImporterService => isPlusTitleUnavailable(item1) && !isPlusTitleUnavailable(item2) ? item2 : item1; private static bool isPlusTitleUnavailable(ImportItem item) - => item.DtoItem.IsAyce is true - && item.DtoItem.Plans?.Any(p => p.IsAyce) is not true; + => item.DtoItem.ContentType is null + || (item.DtoItem.IsAyce is true && item.DtoItem.Plans?.Any(p => p.IsAyce) is not true); } }