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(); }