mod_presence: No need to overwrite index 1 since it's set on the line below

This commit is contained in:
Kim Alvefur 2017-04-10 20:04:07 +02:00
parent 28a11bcc05
commit abdd9866e5

View file

@ -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