From 7c061ba390228ec050ef83b98c8fee98cb3d024e Mon Sep 17 00:00:00 2001 From: Nick Vella Date: Wed, 3 Jul 2019 13:59:36 +1000 Subject: [PATCH] ssg: StaticSiteClient: fix product name in error messages --- .../OpenLiveWriter.BlogClient/Clients/StaticSiteClient.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/managed/OpenLiveWriter.BlogClient/Clients/StaticSiteClient.cs b/src/managed/OpenLiveWriter.BlogClient/Clients/StaticSiteClient.cs index 219630ed..76faf23c 100644 --- a/src/managed/OpenLiveWriter.BlogClient/Clients/StaticSiteClient.cs +++ b/src/managed/OpenLiveWriter.BlogClient/Clients/StaticSiteClient.cs @@ -205,7 +205,7 @@ namespace OpenLiveWriter.BlogClient.Clients throw new BlogClientException( StringId.SSGBuildErrorTitle, StringId.SSGBuildErrorText, - StringId.ProductNameVersioned, + Res.Get(StringId.ProductNameVersioned), proc.ExitCode.ToString(), proc.StandardOutput.ReadToEnd(), proc.StandardError.ReadToEnd() @@ -224,7 +224,7 @@ namespace OpenLiveWriter.BlogClient.Clients throw new BlogClientException( StringId.SSGPublishErrorTitle, StringId.SSGPublishErrorText, - StringId.ProductNameVersioned, + Res.Get(StringId.ProductNameVersioned), proc.ExitCode.ToString(), proc.StandardOutput.ReadToEnd(), proc.StandardError.ReadToEnd()