Small fix group chats not using default avatars

This commit is contained in:
Wolfsblvt 2024-09-10 19:15:49 +02:00
parent 10a23012f3
commit 9e73e2598e
1 changed files with 1 additions and 1 deletions

View File

@ -3129,7 +3129,7 @@ export async function sendMessageAs(args, text) {
const character = characters.find(x => x.avatar === name) ?? characters.find(x => x.name === name);
let force_avatar, original_avatar;
if (characters[this_chid] === character) {
if (this_chid !== undefined && characters[this_chid] === character) {
// If the targeted character is the currently selected one in a solo chat, we don't need to force any avatars
}
else if (character && character.avatar !== 'none') {