Software /
code /
prosody-modules
Changeset
3966:a411a8e028ed
mod_nooffline_noerror: fix error in logging
author | tmolitor <thilo@eightysoft.de> |
---|---|
date | Sat, 21 Mar 2020 23:50:34 +0100 |
parents | 3952:343dc9dd70dd |
children | 3967:0957ba6aeb99 |
files | mod_nooffline_noerror/mod_nooffline_noerror.lua |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mod_nooffline_noerror/mod_nooffline_noerror.lua Sat Mar 21 18:05:22 2020 +0100 +++ b/mod_nooffline_noerror/mod_nooffline_noerror.lua Sat Mar 21 23:50:34 2020 +0100 @@ -12,6 +12,7 @@ -- ignore offline messages and don't return any error (the message will be already in MAM at this point) -- this is *only* triggered if mod_offline is *not* loaded and completely ignored otherwise module:hook("message/offline/handle", function(event) - event.origin.log("info", "Ignoring offline message (mod_offline seems to be *not* loaded)..."); + local log = event.origin and event.origin.log or module._log + log("info", "Ignoring offline message (mod_offline seems to be *not* loaded)..."); return true; end, -100);