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 | 401fb29994d3d0cf90c39bff0760edb90234a368 (patch) | |
tree | 517f3266425fac26a017f255634ccdf1f568e497 /core | |
parent | 4624a05183e166674f7520c264129b698126e59f (diff) | |
download | prosody-401fb29994d3d0cf90c39bff0760edb90234a368.tar.gz prosody-401fb29994d3d0cf90c39bff0760edb90234a368.zip |
moduleapi: assert() that prosody.core_post_stanza is not nil
Diffstat (limited to 'core')
-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" }); |