mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
Hotfix for Chromadb export.
Missing key which causes export to fail.
This commit is contained in:
@ -230,7 +230,7 @@ async function onExportClick() {
|
|||||||
const exportResult = await fetch(url, {
|
const exportResult = await fetch(url, {
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
headers: postHeaders,
|
headers: postHeaders,
|
||||||
body: JSON.stringify({ currentChatId }),
|
body: JSON.stringify({ chat_id: currentChatId }),
|
||||||
});
|
});
|
||||||
|
|
||||||
if (exportResult.ok) {
|
if (exportResult.ok) {
|
||||||
|
Reference in New Issue
Block a user