From 8c68e51ecf71e769ef66cc1e272288934b565a6d Mon Sep 17 00:00:00 2001 From: Bryan Ashby Date: Fri, 5 Aug 2022 14:45:43 -0600 Subject: [PATCH] Fix typo in 'totalBytes' for WFC stats --- core/wfc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/wfc.js b/core/wfc.js index 72f8bd81..682db2de 100644 --- a/core/wfc.js +++ b/core/wfc.js @@ -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),