Fix character deleted emission

This commit is contained in:
Cohee
2024-03-17 20:35:49 +02:00
parent 3b188c37dd
commit afec103eb2
2 changed files with 2 additions and 2 deletions

View File

@ -123,8 +123,8 @@ class CharacterContextMenu {
cache: 'no-cache',
}).then(response => {
if (response.ok) {
eventSource.emit(event_types.CHARACTER_DELETED, { id: characterId, character: character });
return deleteCharacter(character.name, character.avatar, false).then(() => {
eventSource.emit(event_types.CHARACTER_DELETED, { id: characterId, character: characters[characterId] });
if (deleteChats) getPastCharacterChats(characterId).then(pastChats => {
for (const chat of pastChats) {
const name = chat.file_name.replace('.jsonl', '');