1
0
mirror of https://github.com/SillyTavern/SillyTavern.git synced 2025-04-03 13:41:07 +02:00

Open most recent chat when deleting current chat file

This commit is contained in:
Cohee 2024-01-25 18:55:38 +02:00
parent 4abe87f103
commit 6012ee5f89

@ -1418,6 +1418,7 @@ async function replaceCurrentChat() {
if (chatsResponse.ok) {
const chats = Object.values(await chatsResponse.json());
chats.sort((a, b) => sortMoments(timestampToMoment(a.last_mes), timestampToMoment(b.last_mes)));
// pick existing chat
if (chats.length && typeof chats[0] === 'object') {