diff --git a/MTSC/Common/Http/HttpResponse.cs b/MTSC/Common/Http/HttpResponse.cs
index 8edd11d..df0fa54 100644
--- a/MTSC/Common/Http/HttpResponse.cs
+++ b/MTSC/Common/Http/HttpResponse.cs
@@ -70,8 +70,8 @@ namespace MTSC.Common.Http
{
responseString.Append(header.Key).Append(':').Append(HttpHeaders.SP).Append(header.Value).Append(HttpHeaders.CRLF);
}
- responseString.Append(HttpHeaders.CRLF);
responseString.Append(cookieString);
+ responseString.Append(HttpHeaders.CRLF);
byte[] response = new byte[responseString.Length + (Body == null ? 0 : Body.Length)];
byte[] responseBytes = ASCIIEncoding.ASCII.GetBytes(responseString.ToString());
Array.Copy(responseBytes, 0, response, 0, responseBytes.Length);
diff --git a/MTSC/MTSC.csproj b/MTSC/MTSC.csproj
index 518d456..e0ddb22 100644
--- a/MTSC/MTSC.csproj
+++ b/MTSC/MTSC.csproj
@@ -5,12 +5,12 @@
netcoreapp2.1;net48;netstandard2.0;netcoreapp3.0
- 1.2.1
+ 1.2.3
Alexandru-Victor Macocian
MTSC
Modular TCP Server and Client
- 0.1.2.1
- 0.1.2.1
+ 0.1.2.3
+ 0.1.2.3
true
AnyCPU;x64
https://github.com/AlexMacocian/MTSC