Corrected bandwidth statistics in IceWarp provider
This commit is contained in:
parent
598986a7d0
commit
d3ce5dc5fc
1 changed files with 2 additions and 2 deletions
|
@ -564,8 +564,8 @@ namespace WebsitePanel.Providers.Mail
|
|||
Year = date.Year,
|
||||
Month = date.Month,
|
||||
Day = date.Day,
|
||||
BytesSent = Convert.ToInt64(line[mailSentField])*1024,
|
||||
BytesReceived = Convert.ToInt64(line[mailReceivedField])*1024
|
||||
BytesSent = Convert.ToInt64(fields[mailSentField])*1024,
|
||||
BytesReceived = Convert.ToInt64(fields[mailReceivedField])*1024
|
||||
};
|
||||
days.Add(dailyStats);
|
||||
continue;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue