From eff1a23c19dd036d632ce9da6646c3d2a4a3e975 Mon Sep 17 00:00:00 2001 From: Faris Hijazi Date: Tue, 18 Mar 2025 09:23:52 +0300 Subject: [PATCH] fixed 5682 dates not surviving importing Simply replaced the frontend svelte code that does the importing. One of the keys were wrong, it was `convo['timestamp']` instead of `convo['create_time']` --- src/lib/utils/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/utils/index.ts b/src/lib/utils/index.ts index cff735d71..96c8f4028 100644 --- a/src/lib/utils/index.ts +++ b/src/lib/utils/index.ts @@ -608,7 +608,7 @@ export const convertOpenAIChats = (_chats) => { user_id: '', title: convo['title'], chat: chat, - timestamp: convo['timestamp'] + timestamp: convo['create_time'] }); } else { failed++;