Fix typo in 'totalBytes' for WFC stats

This commit is contained in:
Bryan Ashby 2022-08-05 14:45:43 -06:00
parent 5b7b1a5b74
commit 8c68e51ecf
No known key found for this signature in database
GPG Key ID: C2C1B501E4EFD994
1 changed files with 1 additions and 1 deletions

View File

@ -447,7 +447,7 @@ exports.getModule = class WaitingForCallerModule extends MenuModule {
totalPosts: StatLog.getSystemStatNum(SysProps.MessageTotalCount),
totalUsers: StatLog.getSystemStatNum(SysProps.TotalUserCount),
totalFiles: fileAreaStats.totalFiles || 0,
totalFileBytes: fileAreaStats.totalFileBytes || 0,
totalFileBytes: fileAreaStats.totalBytes || 0,
// Today's Stats
callsToday: StatLog.getSystemStatNum(SysProps.LoginsToday),