# HG changeset patch # User tmolitor # Date 1586290312 -7200 # Node ID e0f3e29ab18ae38d69a3951b8fccdaff4039da36 # Parent 39931d727c22ed42837392e26913059eceb5c928 mod_nooffline_noerror: Fix for missing log diff -r 39931d727c22 -r e0f3e29ab18a mod_nooffline_noerror/mod_nooffline_noerror.lua --- a/mod_nooffline_noerror/mod_nooffline_noerror.lua Tue Apr 07 18:48:04 2020 +0200 +++ b/mod_nooffline_noerror/mod_nooffline_noerror.lua Tue Apr 07 22:11:52 2020 +0200 @@ -12,7 +12,9 @@ -- 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) - local log = event.origin and event.origin.log or module._log - log("info", "Ignoring offline message (mod_offline seems to be *not* loaded)..."); + local log = event.origin and event.origin.log or module._log; + if log then + log("info", "Ignoring offline message (mod_offline seems *not* to be loaded)..."); + end return true; end, -100);