Skip to content

Commit

Permalink
Change comment text
Browse files Browse the repository at this point in the history
  • Loading branch information
Triky313 committed Mar 24, 2023
1 parent 66bcfac commit df4f86d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ public GetMailInfosResponse(Dictionary<byte, object> 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);
Expand Down

0 comments on commit df4f86d

Please sign in to comment.