We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad9e935 commit 7836070Copy full SHA for 7836070
src/api/Providers/bestim.js
@@ -50,6 +50,8 @@ export const BestIMProvider = {
50
let line = lines[i];
51
if (line.startsWith("data: ")) {
52
let chunk = line.substring(6);
53
+ // fix \n
54
+ chunk = chunk.replace(/\\n/g, "\n");
55
yield chunk;
56
}
57
0 commit comments