From df4f86d02f02f2c1ed3d3700e7565dc5a50140e8 Mon Sep 17 00:00:00 2001 From: Aaron Date: Fri, 24 Mar 2023 09:13:03 +0100 Subject: [PATCH] Change comment text --- .../Network/Operations/Responses/GetMailInfosResponse.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/StatisticsAnalysisTool/Network/Operations/Responses/GetMailInfosResponse.cs b/src/StatisticsAnalysisTool/Network/Operations/Responses/GetMailInfosResponse.cs index 8a5c808cf..6681ed299 100644 --- a/src/StatisticsAnalysisTool/Network/Operations/Responses/GetMailInfosResponse.cs +++ b/src/StatisticsAnalysisTool/Network/Operations/Responses/GetMailInfosResponse.cs @@ -37,7 +37,8 @@ public GetMailInfosResponse(Dictionary parameters) var guid = parameters[0].ObjectToGuid(); long[] mailIdArray = {}; - // If the mails 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 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);