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']`
This commit is contained in:
Faris Hijazi 2025-03-18 09:23:52 +03:00
parent f5c5a4119f
commit eff1a23c19

View File

@ -608,7 +608,7 @@ export const convertOpenAIChats = (_chats) => {
user_id: '',
title: convo['title'],
chat: chat,
timestamp: convo['timestamp']
timestamp: convo['create_time']
});
} else {
failed++;