join chatlog with \x01

This commit is contained in:
steve green 2024-09-14 10:05:30 +08:00 committed by GitHub
parent 86b114b5e5
commit 96fe4c4ab6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -217,15 +217,15 @@ class WorldInfoBuffer {
depth = MAX_SCAN_DEPTH;
}
let result = this.#depthBuffer.slice(this.#startDepth, depth).join('\n');
let result = this.#depthBuffer.slice(this.#startDepth, depth).join('\n\x01');
if (this.#injectBuffer.length > 0) {
result += '\n' + this.#injectBuffer.join('\n');
result += '\n\x01' + this.#injectBuffer.join('\n\x01');
}
// Min activations should not include the recursion buffer
if (this.#recurseBuffer.length > 0 && scanState !== scan_state.MIN_ACTIVATIONS) {
result += '\n' + this.#recurseBuffer.join('\n');
result += '\n\x01' + this.#recurseBuffer.join('\n\x01');
}
return result;