Fixed an absolutely stupid bug. Bumped package version to 1.6.8

This commit is contained in:
MattMo 2023-06-29 10:00:59 -07:00
parent 7934f807ef
commit 4b05b1b6b9
2 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@
<AssemblyName>MontoyaTech.Rest.Net</AssemblyName> <AssemblyName>MontoyaTech.Rest.Net</AssemblyName>
<RootNamespace>MontoyaTech.Rest.Net</RootNamespace> <RootNamespace>MontoyaTech.Rest.Net</RootNamespace>
<GenerateDocumentationFile>True</GenerateDocumentationFile> <GenerateDocumentationFile>True</GenerateDocumentationFile>
<Version>1.6.7</Version> <Version>1.6.8</Version>
<PackageReleaseNotes></PackageReleaseNotes> <PackageReleaseNotes></PackageReleaseNotes>
<PackageIcon>Logo_Symbol_Black_Outline.png</PackageIcon> <PackageIcon>Logo_Symbol_Black_Outline.png</PackageIcon>
</PropertyGroup> </PropertyGroup>

View File

@ -31,7 +31,7 @@ namespace MontoyaTech.Rest.Net
builder.Append(input[0]); builder.Append(input[0]);
for (int i = 1; i < input.Count; i++) for (int i = 1; i < input.Count; i++)
builder.Append(separator).Append(input[1]); builder.Append(separator).Append(input[i]);
return builder.ToString(); return builder.ToString();
} }
@ -48,7 +48,7 @@ namespace MontoyaTech.Rest.Net
builder.Append(input[0]); builder.Append(input[0]);
for (int i = 1; i < input.Count; i++) for (int i = 1; i < input.Count; i++)
builder.Append(separator).Append(input[1]); builder.Append(separator).Append(input[i]);
return builder.ToString(); return builder.ToString();
} }