diff options
author | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-03-25 21:06:51 +0100 |
---|---|---|
committer | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-03-25 21:06:51 +0100 |
commit | 347d3f92da458520b30e91e56bd66e472e084e70 (patch) | |
tree | 8fa21c18ce4380b89db814687483530f01fe506d /g4f/gui/client/static/js/chat.v1.js | |
parent | Merge pull request #1744 from igeni/concat2fstr (diff) | |
download | gpt4free-347d3f92da458520b30e91e56bd66e472e084e70.tar gpt4free-347d3f92da458520b30e91e56bd66e472e084e70.tar.gz gpt4free-347d3f92da458520b30e91e56bd66e472e084e70.tar.bz2 gpt4free-347d3f92da458520b30e91e56bd66e472e084e70.tar.lz gpt4free-347d3f92da458520b30e91e56bd66e472e084e70.tar.xz gpt4free-347d3f92da458520b30e91e56bd66e472e084e70.tar.zst gpt4free-347d3f92da458520b30e91e56bd66e472e084e70.zip |
Diffstat (limited to 'g4f/gui/client/static/js/chat.v1.js')
-rw-r--r-- | g4f/gui/client/static/js/chat.v1.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/g4f/gui/client/static/js/chat.v1.js b/g4f/gui/client/static/js/chat.v1.js index f9bc4568..a3a1cccf 100644 --- a/g4f/gui/client/static/js/chat.v1.js +++ b/g4f/gui/client/static/js/chat.v1.js @@ -955,7 +955,7 @@ async function api(ressource, args=null, file=null) { } const url = `/backend-api/v2/${ressource}`; if (ressource == "conversation") { - const body = JSON.stringify(args); + let body = JSON.stringify(args); const headers = { accept: 'text/event-stream' } |