Skip to content

Commit

Permalink
Version increased
Browse files Browse the repository at this point in the history
  • Loading branch information
Triky313 committed Mar 24, 2023
1 parent df4f86d commit 40b9aa5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
using log4net;
using StatisticsAnalysisTool.Common;
using StatisticsAnalysisTool.Trade.Mails;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Reflection;
using StatisticsAnalysisTool.Trade.Mails;

namespace StatisticsAnalysisTool.Network.Operations.Responses;

Expand Down Expand Up @@ -33,16 +32,16 @@ public GetMailInfosResponse(Dictionary<byte, object> parameters)
{
return;
}

var guid = parameters[0].ObjectToGuid();

long[] mailIdArray = {};
long[] mailIdArray = { };

// If the mails ID's are ever below 32.767, an error will appear here, but this should not happen on the current west and east servers, since the mail ID is above it and can never come below it again.
if (typeof(int[]).Name == parameters[3].GetType().Name)
{
mailIdArray = Array.ConvertAll((int[]) parameters[3], x => (long) x);
}
}
else if (typeof(long[]).Name == parameters[3].GetType().Name)
{
mailIdArray = ((long[]) parameters[3]).ToArray();
Expand Down
4 changes: 2 additions & 2 deletions src/StatisticsAnalysisTool/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,5 @@
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
// indem Sie "*" wie unten gezeigt eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("5.17.5.*")]
[assembly: AssemblyFileVersion("5.17.5.0")]
[assembly: AssemblyVersion("5.18.1.*")]
[assembly: AssemblyFileVersion("5.18.1.0")]

0 comments on commit 40b9aa5

Please sign in to comment.