aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2021-12-15 11:24:45 +0100
committerKim Alvefur <zash@zash.se>2021-12-15 11:24:45 +0100
commit5f73d6f0703f9c2f80575573ea92a44154c9f6dc (patch)
tree292456da6e45850778b81e5249b72a291882e0ae /plugins
parent9c747a1dbca08e021d3971c65d8d6e65ed1ea331 (diff)
downloadprosody-5f73d6f0703f9c2f80575573ea92a44154c9f6dc.tar.gz
prosody-5f73d6f0703f9c2f80575573ea92a44154c9f6dc.zip
mod_smacks: Fix typo
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_smacks.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_smacks.lua b/plugins/mod_smacks.lua
index 04010b4e..793fc1e7 100644
--- a/plugins/mod_smacks.lua
+++ b/plugins/mod_smacks.lua
@@ -442,7 +442,7 @@ module:hook("delivery/failure", function(event)
prosody.hosts[module.host].sessions[session.username].sessions or nil;
if sessions and next(sessions) == session.resource and next(sessions, session.resource) == nil then
local ok = module:fire_event("message/offline/handle", { origin = session, username = session.username, stanza = stanza });
- session.log("debug", "mod_smacks delivery/failuere returning %s for offline-handled stanza", tostring(ok));
+ session.log("debug", "mod_smacks delivery/failure returning %s for offline-handled stanza", tostring(ok));
return ok; -- if stanza was handled, don't send an error
end
end