fix: change view limit (#2157)

This commit is contained in:
yetone
2025-06-05 01:45:31 +08:00
committed by GitHub
parent 860a479789
commit af8d373f22

View File

@@ -91,7 +91,7 @@ function M.func(opts, on_log, on_complete, session_ctx)
local size = 0 local size = 0
for _, line in ipairs(lines or {}) do for _, line in ipairs(lines or {}) do
size = size + #line size = size + #line
if size > 2048 * 10 then if size > 2048 * 100 then
is_truncated = true is_truncated = true
break break
end end