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,
|
Year = date.Year,
|
||||||
Month = date.Month,
|
Month = date.Month,
|
||||||
Day = date.Day,
|
Day = date.Day,
|
||||||
BytesSent = Convert.ToInt64(line[mailSentField])*1024,
|
BytesSent = Convert.ToInt64(fields[mailSentField])*1024,
|
||||||
BytesReceived = Convert.ToInt64(line[mailReceivedField])*1024
|
BytesReceived = Convert.ToInt64(fields[mailReceivedField])*1024
|
||||||
};
|
};
|
||||||
days.Add(dailyStats);
|
days.Add(dailyStats);
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue