mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Many things: switch from hacky multi-arg xpcall implementations to a standard util.xpcall
This commit is contained in:
parent
1454ac8208
commit
f5f6460b2e
7 changed files with 23 additions and 31 deletions
|
@ -1,6 +1,8 @@
|
|||
local promise_methods = {};
|
||||
local promise_mt = { __name = "promise", __index = promise_methods };
|
||||
|
||||
local xpcall = require "util.xpcall".xpcall;
|
||||
|
||||
function promise_mt:__tostring()
|
||||
return "promise (" .. (self._state or "invalid") .. ")";
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue