Pārlūkot izejas kodu

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']`
Faris Hijazi 1 mēnesi atpakaļ
vecāks
revīzija
eff1a23c19
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      src/lib/utils/index.ts

+ 1 - 1
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++;