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