fix really minor bug

This commit is contained in:
MathMan05 2025-04-12 23:51:48 -05:00
parent 7ae5214358
commit 7bc34ae038

View file

@ -401,7 +401,7 @@ class Localuser {
(async () => {
while (true) {
const read = await r.read();
const data = textdecode.decode(read.value);
const data = textdecode.decode(read.value, {stream: true});
build += data;
try {
const temp = JSON.parse(build);