From 4b05b1b6b96ffbed55a446eb1bdc7b3472bc4084 Mon Sep 17 00:00:00 2001 From: MattMo Date: Thu, 29 Jun 2023 10:00:59 -0700 Subject: [PATCH] Fixed an absolutely stupid bug. Bumped package version to 1.6.8 --- Rest.Net/Rest.Net.csproj | 2 +- Rest.Net/StringExtensions.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Rest.Net/Rest.Net.csproj b/Rest.Net/Rest.Net.csproj index b37d98d..104d26c 100644 --- a/Rest.Net/Rest.Net.csproj +++ b/Rest.Net/Rest.Net.csproj @@ -17,7 +17,7 @@ MontoyaTech.Rest.Net MontoyaTech.Rest.Net True - 1.6.7 + 1.6.8 Logo_Symbol_Black_Outline.png diff --git a/Rest.Net/StringExtensions.cs b/Rest.Net/StringExtensions.cs index c51e144..a2fe900 100644 --- a/Rest.Net/StringExtensions.cs +++ b/Rest.Net/StringExtensions.cs @@ -31,7 +31,7 @@ namespace MontoyaTech.Rest.Net builder.Append(input[0]); for (int i = 1; i < input.Count; i++) - builder.Append(separator).Append(input[1]); + builder.Append(separator).Append(input[i]); return builder.ToString(); } @@ -48,7 +48,7 @@ namespace MontoyaTech.Rest.Net builder.Append(input[0]); for (int i = 1; i < input.Count; i++) - builder.Append(separator).Append(input[1]); + builder.Append(separator).Append(input[i]); return builder.ToString(); }