From f19c46ee45ce1da6d4d012b9a5bf3d3cc443aca1 Mon Sep 17 00:00:00 2001 From: Robert McRackan Date: Mon, 23 Aug 2021 16:07:19 -0400 Subject: [PATCH] Book: add pdf url as is, not Absolute --- DtoImporterService/BookImporter.cs | 4 ++-- LibationLauncher/LibationLauncher.csproj | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/DtoImporterService/BookImporter.cs b/DtoImporterService/BookImporter.cs index ffb128cb..ad66e9d9 100644 --- a/DtoImporterService/BookImporter.cs +++ b/DtoImporterService/BookImporter.cs @@ -120,8 +120,8 @@ namespace DtoImporterService book.UpdateBookDetails(item.IsAbridged, item.DatePublished); - if (!string.IsNullOrWhiteSpace(item.SupplementUrl)) - book.AddSupplementDownloadUrl(item.SupplementUrl); + if (!string.IsNullOrWhiteSpace(item.PdfUrl.ToString())) + book.AddSupplementDownloadUrl(item.PdfUrl.ToString()); return book; } diff --git a/LibationLauncher/LibationLauncher.csproj b/LibationLauncher/LibationLauncher.csproj index c437de6d..9b4d182e 100644 --- a/LibationLauncher/LibationLauncher.csproj +++ b/LibationLauncher/LibationLauncher.csproj @@ -13,7 +13,7 @@ win-x64 - 5.5.3.1 + 5.5.3.2