Fix request batching

This commit is contained in:
Mia 2023-03-26 04:58:04 -05:00
parent a36804d03b
commit 0f049d1dba

View File

@ -146,7 +146,7 @@ export class ActionContext {
} catch {}
}
if (result.act === 'json') {
if (result.act === 'json' || typeof result.json === 'string') {
json = result.json;
delete result.json;
}