also check content and content.users before proceeding
parent
78ba22d12e
commit
5c7e9812a1
|
@ -416,7 +416,8 @@ function textForEncryptionEvent(event) {
|
||||||
// Currently will only display a change if a user's power level is changed
|
// Currently will only display a change if a user's power level is changed
|
||||||
function textForPowerEvent(event) {
|
function textForPowerEvent(event) {
|
||||||
const senderName = event.sender ? event.sender.name : event.getSender();
|
const senderName = event.sender ? event.sender.name : event.getSender();
|
||||||
if (!event.getPrevContent() || !event.getPrevContent().users) {
|
if (!event.getPrevContent() || !event.getPrevContent().users ||
|
||||||
|
!event.getContent() || !event.getContent().users) {
|
||||||
return '';
|
return '';
|
||||||
}
|
}
|
||||||
const userDefault = event.getContent().users_default || 0;
|
const userDefault = event.getContent().users_default || 0;
|
||||||
|
|
Loading…
Reference in New Issue