From e4d64bb10c538c327302a493bf1e685f5aefa19f Mon Sep 17 00:00:00 2001 From: aclavelle Date: Mon, 29 Jan 2018 08:41:28 -0600 Subject: [PATCH 1/2] fix missing file reference --- ShippingEasy/ShippingEasy.csproj | 1 - 1 file changed, 1 deletion(-) diff --git a/ShippingEasy/ShippingEasy.csproj b/ShippingEasy/ShippingEasy.csproj index 4d983f2..ff9199c 100644 --- a/ShippingEasy/ShippingEasy.csproj +++ b/ShippingEasy/ShippingEasy.csproj @@ -42,7 +42,6 @@ - From e5bae52949aff1814dfeaba684fc4a334be9ab1d Mon Sep 17 00:00:00 2001 From: aclavelle Date: Mon, 29 Jan 2018 08:42:06 -0600 Subject: [PATCH 2/2] fix bug causing webhook verification to fail --- ShippingEasy/Signature.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ShippingEasy/Signature.cs b/ShippingEasy/Signature.cs index 180ae83..b8df264 100644 --- a/ShippingEasy/Signature.cs +++ b/ShippingEasy/Signature.cs @@ -46,7 +46,7 @@ public string ToPlainTextString() _path, combinedParameters, _body - }.Where(component => !String.IsNullOrWhiteSpace(component)) + } ); }