From 3e2bc89319c551e2b3345fc1dc567961239bd8d2 Mon Sep 17 00:00:00 2001 From: pofider Date: Thu, 11 Mar 2021 22:12:24 +0100 Subject: [PATCH] remove numberOfPages --- appveyor.yml | 2 +- jsreport.Shared/SerializerHelper.cs | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 4febc4d..790d7a3 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -13,7 +13,7 @@ before_build: deploy: provider: NuGet api_key: - secure: 8YEU/HfxJmYnx+WcWGi7Lay3uoTDIfDh3R2CdEhDsUZpoDmqK9g4IP1xq+NnwDLM + secure: UxdKl7p+OXiedpDaYECXtpfyKWhYDTseqXQlR4TEmqPpU2XoEPFZxiYPeX6cfdQ/ on: appveyor_repo_tag: true test_script: diff --git a/jsreport.Shared/SerializerHelper.cs b/jsreport.Shared/SerializerHelper.cs index bac9c9d..f6abeeb 100644 --- a/jsreport.Shared/SerializerHelper.cs +++ b/jsreport.Shared/SerializerHelper.cs @@ -35,8 +35,7 @@ public static ReportMeta ParseReportMeta(IDictionary meta) ReportPermanentLink = meta.MetaValue("permanentLink"), AsyncReportLocation = meta.MetaValue("location"), ContentType = meta.MetaValue("contentType"), - ReportId = meta.MetaValue("reportId"), - NumberOfPages = meta.MetaValueInt("numberOfPages"), + ReportId = meta.MetaValue("reportId"), Logs = logs, ContentDisposition = meta.MetaValue("contentDisposition"), FileExtension = meta.MetaValue("fileExtension"),