Upgrade version /release

This commit is contained in:
2021-09-30 21:03:43 +02:00
parent 79da5a4ebc
commit 3ceeb4d6dd
2 changed files with 6 additions and 6 deletions

View File

@ -92,8 +92,8 @@ export class ChatUtility {
/* -------------------------------------------- */
static getWhisperRecipientsAndGMs(name) {
return ChatMessage.getWhisperRecipients(name)
.concat(ChatMessage.getWhisperRecipients('GM'));
let recep1 = ChatMessage.getWhisperRecipients(name) || [];
return recep1.concat(ChatMessage.getWhisperRecipients('GM'));
}
/* -------------------------------------------- */