Initial support for user status flags (NotAvail, NotVisible, ...)

This commit is contained in:
Bryan Ashby
2022-05-08 22:15:57 -06:00
parent 24491000ad
commit 6502f3b55e
5 changed files with 62 additions and 14 deletions

View File

@@ -43,7 +43,7 @@ exports.getModule = class WhosOnlineModule extends MenuModule {
return cb(Errors.MissingMci(`Missing online list MCI ${MciViewIds.onlineList}`));
}
const onlineList = getActiveConnectionList(true).slice(0, onlineListView.height).map(
const onlineList = getActiveConnectionList().slice(0, onlineListView.height).map(
oe => Object.assign(oe, { text : oe.userName, timeOn : _.upperFirst(oe.timeOn.humanize()) })
);