mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_presence: Remove some unused variables
This commit is contained in:
parent
2aa7b4448e
commit
37735f0c3e
1 changed files with 2 additions and 2 deletions
|
@ -9,7 +9,7 @@
|
|||
local log = module._log;
|
||||
|
||||
local require = require;
|
||||
local pairs, ipairs = pairs, ipairs;
|
||||
local pairs = pairs;
|
||||
local t_concat, t_insert = table.concat, table.insert;
|
||||
local s_find = string.find;
|
||||
local tonumber = tonumber;
|
||||
|
@ -346,7 +346,7 @@ module:hook("presence/full", function(data)
|
|||
end);
|
||||
module:hook("presence/host", function(data)
|
||||
-- inbound presence to the host
|
||||
local origin, stanza = data.origin, data.stanza;
|
||||
local stanza = data.stanza;
|
||||
|
||||
local from_bare = jid_bare(stanza.attr.from);
|
||||
local t = stanza.attr.type;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue