# HG changeset patch # User tmolitor # Date 1583694023 -3600 # Node ID 675726ab06d303784cfc38414556e0f0964a4224 # Parent a6b3b41a116c13f081f57b8e4c9184962d6ac659 mod_cloud_notify: Fix bug in prosody 0.9 diff -r a6b3b41a116c -r 675726ab06d3 mod_cloud_notify/mod_cloud_notify.lua --- a/mod_cloud_notify/mod_cloud_notify.lua Sun Mar 08 19:59:49 2020 +0100 +++ b/mod_cloud_notify/mod_cloud_notify.lua Sun Mar 08 20:00:23 2020 +0100 @@ -101,7 +101,7 @@ end); if timer and timer.stop then return timer; end -- new prosody api includes stop() function return { - stop = function () stopped = true end; + stop = function(self) stopped = true end; timer; }; end