Traceback parser fix

This commit is contained in:
smok1e 2025-07-03 18:09:47 +03:00
parent 8ff18c3257
commit e43df1885d

View File

@ -267,7 +267,10 @@ function system.call(method, ...)
end
end
path, line = path:match("\t+([^:]+%.lua):(%d+):")
local iter = path:gmatch("\t+([^:]+%.lua):(%d+):")
iter()
path, line = iter()
-- Weird case on some server machines, unable to reproduce,
-- seems like traceback parsing error