Cleanup, docs, screen shot of WFC

This commit is contained in:
Bryan Ashby
2022-08-04 11:32:09 -06:00
parent 8a351ecd7d
commit 95183fd3b3
7 changed files with 28 additions and 13 deletions

View File

@@ -57,7 +57,9 @@ exports.getModule = class WhosOnlineModule extends MenuModule {
.map(oe =>
Object.assign(oe, {
text: oe.userName,
timeOn: _.upperFirst(oe.timeOn.humanize()),
timeOn: oe.timeOn
? _.upperFirst(oe.timeOn.humanize())
: 0, // :TODO: fix me. We can always track time...
})
);