From f16ad30891301a2711e6241373d8095969fe9645 Mon Sep 17 00:00:00 2001 From: Robert McRackan Date: Tue, 24 Aug 2021 09:28:13 -0400 Subject: [PATCH] bug fix from my last bug fix :( --- DtoImporterService/BookImporter.cs | 2 +- LibationLauncher/LibationLauncher.csproj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DtoImporterService/BookImporter.cs b/DtoImporterService/BookImporter.cs index ad66e9d9..a6e29a8c 100644 --- a/DtoImporterService/BookImporter.cs +++ b/DtoImporterService/BookImporter.cs @@ -120,7 +120,7 @@ namespace DtoImporterService book.UpdateBookDetails(item.IsAbridged, item.DatePublished); - if (!string.IsNullOrWhiteSpace(item.PdfUrl.ToString())) + if (item.PdfUrl is not null) book.AddSupplementDownloadUrl(item.PdfUrl.ToString()); return book; diff --git a/LibationLauncher/LibationLauncher.csproj b/LibationLauncher/LibationLauncher.csproj index 03f705e5..b50bdea2 100644 --- a/LibationLauncher/LibationLauncher.csproj +++ b/LibationLauncher/LibationLauncher.csproj @@ -13,7 +13,7 @@ win-x64 - 5.5.4.1 + 5.5.5.1