Add confirmation for convert to group
This commit is contained in:
parent
a91f0f7ee5
commit
960c91c147
|
@ -237,6 +237,12 @@ async function convertSoloToGroupChat() {
|
|||
return;
|
||||
}
|
||||
|
||||
const confirm = await callPopup('Are you sure you want to convert this chat to a group chat?', 'confirm');
|
||||
|
||||
if (!confirm) {
|
||||
return;
|
||||
}
|
||||
|
||||
const character = characters[this_chid];
|
||||
|
||||
// Populate group required fields
|
||||
|
|
Loading…
Reference in New Issue