Only refresh character list after all deletions have been processed.

This commit is contained in:
artisticMink 2023-12-09 13:21:46 +01:00
parent 6f610204d6
commit ba3966e148
2 changed files with 5 additions and 4 deletions

View File

@ -7652,8 +7652,9 @@ export async function handleDeleteCharacter(popup_type, this_chid, delete_chats)
* *
* @param {string} name - The name of the character to be deleted. * @param {string} name - The name of the character to be deleted.
* @param {string} avatar - The avatar URL of the character to be deleted. * @param {string} avatar - The avatar URL of the character to be deleted.
* @param {boolean} reloadCharacters - Whether the character list should be refreshed after deletion.
*/ */
export async function deleteCharacter(name, avatar) { export async function deleteCharacter(name, avatar, reloadCharacters = true) {
await clearChat(); await clearChat();
$('#character_cross').click(); $('#character_cross').click();
this_chid = 'invalid-safety-id'; this_chid = 'invalid-safety-id';
@ -7664,7 +7665,7 @@ export async function deleteCharacter(name, avatar) {
$(document.getElementById('rm_button_selected_ch')).children('h2').text(''); $(document.getElementById('rm_button_selected_ch')).children('h2').text('');
this_chid = undefined; this_chid = undefined;
delete tag_map[avatar]; delete tag_map[avatar];
await getCharacters(); if (reloadCharacters) await getCharacters();
select_rm_info('char_delete', name); select_rm_info('char_delete', name);
await printMessages(); await printMessages();
saveSettingsDebounced(); saveSettingsDebounced();

View File

@ -123,9 +123,9 @@ class CharacterContextMenu {
cache: 'no-cache', cache: 'no-cache',
}).then(response => { }).then(response => {
if (response.ok) { if (response.ok) {
deleteCharacter(character.name, character.avatar).then(() => { return deleteCharacter(character.name, character.avatar, false).then(() => {
if (deleteChats) { if (deleteChats) {
fetch('/api/characters/chats', { return fetch('/api/characters/chats', {
method: 'POST', method: 'POST',
body: JSON.stringify({ avatar_url: character.avatar }), body: JSON.stringify({ avatar_url: character.avatar }),
headers: getRequestHeaders(), headers: getRequestHeaders(),