refac: accept legacy 'citation' type

This commit is contained in:
Timothy Jaeryang Baek 2024-11-22 10:49:30 -08:00
parent 335337fc75
commit 1c3bc99b86

View File

@ -216,7 +216,7 @@
} else {
message.statusHistory = [data];
}
} else if (type === 'source') {
} else if (type === 'source' || type === 'citation') {
if (data?.type === 'code_execution') {
// Code execution; update existing code execution by ID, or add new one.
if (!message?.code_executions) {