Add error catching for import

This commit is contained in:
Brandon Hulston 2024-01-17 01:19:27 -07:00
parent 27d5eb4684
commit 415777eca2

View file

@ -133,7 +133,11 @@
let chats = JSON.parse(event.target.result); let chats = JSON.parse(event.target.result);
console.log(chats); console.log(chats);
if (getImportOrigin(chats) == 'gpt') { if (getImportOrigin(chats) == 'gpt') {
try {
chats = convertGptChats(chats); chats = convertGptChats(chats);
} catch (error) {
console.log("Unable to import chats:", error);
}
} }
importChats(chats); importChats(chats);
}; };