mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_presence: No need to overwrite index 1 since it's set on the line below
This commit is contained in:
parent
28a11bcc05
commit
abdd9866e5
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ function handle_normal_presence(origin, stanza)
|
|||
local priority = stanza:get_child("priority");
|
||||
if priority and priority[1] ~= "0" then
|
||||
for i=#priority.tags,1,-1 do priority.tags[i] = nil; end
|
||||
for i=#priority,1,-1 do priority[i] = nil; end
|
||||
for i=#priority,2,-1 do priority[i] = nil; end
|
||||
priority[1] = "0";
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue