mirror of
https://git.mirrors.martin98.com/https://github.com/open-webui/open-webui
synced 2025-08-20 13:39:06 +08:00
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:
parent
f5c5a4119f
commit
eff1a23c19
@ -608,7 +608,7 @@ export const convertOpenAIChats = (_chats) => {
|
|||||||
user_id: '',
|
user_id: '',
|
||||||
title: convo['title'],
|
title: convo['title'],
|
||||||
chat: chat,
|
chat: chat,
|
||||||
timestamp: convo['timestamp']
|
timestamp: convo['create_time']
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
failed++;
|
failed++;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user