Fix a couple MCI code display issues
This commit is contained in:
parent
ea6ab5a146
commit
d5ab53ecad
|
@ -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();
|
||||||
|
|
Loading…
Reference in New Issue