mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.serialization: Encode non-fatal error in way that can be restored
It could previously encode to eg `{ [nil] = ... }` which doesn't get decoded
This commit is contained in:
parent
1497806989
commit
a261de73b9
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ local function fatal_error(obj, why)
|
|||
end
|
||||
|
||||
local function nonfatal_fallback(x, why)
|
||||
return s_format("nil --[[%s: %s]]", type(x), why or "fail");
|
||||
return s_format("{__type=%q,__error=%q}", type(x), why or "fail");
|
||||
end
|
||||
|
||||
local string_escapes = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue