Fix a couple MCI code display issues

This commit is contained in:
Bryan Ashby 2023-08-24 14:18:03 -06:00
parent ea6ab5a146
commit d5ab53ecad
No known key found for this signature in database
GPG Key ID: C2C1B501E4EFD994
1 changed files with 5 additions and 2 deletions

View File

@ -311,10 +311,13 @@ const PREDEFINED_MCI_GENERATORS = {
return StatLog.getUserStatNumByClient( return StatLog.getUserStatNumByClient(
client, client,
UserProps.NewAddressedToMessageCount UserProps.NewAddressedToMessageCount
); ).toString();
}, },
NP: function userNewPrivateMailCount(client) { NP: function userNewPrivateMailCount(client) {
return StatLog.getUserStatNumByClient(client, UserProps.NewPrivateMailCount); return StatLog.getUserStatNumByClient(
client,
UserProps.NewPrivateMailCount
).toString();
}, },
IA: function userStatusAvailableIndicator(client) { IA: function userStatusAvailableIndicator(client) {
const indicators = client.currentTheme.helpers.getStatusAvailIndicators(); const indicators = client.currentTheme.helpers.getStatusAvailIndicators();