diff options
author | Matthew Wild <mwild1@gmail.com> | 2013-04-05 19:13:46 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2013-04-05 19:13:46 +0100 |
commit | 7357acbb323b1513954075971520516d3532d968 (patch) | |
tree | 517f3266425fac26a017f255634ccdf1f568e497 /core/moduleapi.lua | |
parent | 93f34b7d58bc5022998afb346fccd0fc992ce094 (diff) | |
download | prosody-7357acbb323b1513954075971520516d3532d968.tar.gz prosody-7357acbb323b1513954075971520516d3532d968.zip |
moduleapi: assert() that prosody.core_post_stanza is not nil
Diffstat (limited to 'core/moduleapi.lua')
-rw-r--r-- | core/moduleapi.lua | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/core/moduleapi.lua b/core/moduleapi.lua index de900bf0..fa20c3cd 100644 --- a/core/moduleapi.lua +++ b/core/moduleapi.lua @@ -21,7 +21,10 @@ local tonumber, tostring = tonumber, tostring; local prosody = prosody; local hosts = prosody.hosts; -local core_post_stanza = prosody.core_post_stanza; + +-- FIXME: This assert() is to try and catch an obscure bug (2013-04-05) +local core_post_stanza = assert(prosody.core_post_stanza, + "prosody.core_post_stanza is nil, please report this as a bug"); -- Registry of shared module data local shared_data = setmetatable({}, { __mode = "v" }); |