mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_groups: Check for existence of roster[false] before clearing version (thanks Flo)
This commit is contained in:
parent
a48703aa3b
commit
fb63a1dd60
1 changed files with 3 additions and 1 deletions
|
@ -67,7 +67,9 @@ function remove_virtual_contacts(username, host, datastore, data)
|
|||
new_roster[jid] = contact;
|
||||
end
|
||||
end
|
||||
new_roster[false].version = nil; -- Version is void
|
||||
if new_roster[false] then
|
||||
new_roster[false].version = nil; -- Version is void
|
||||
end
|
||||
return username, host, datastore, new_roster;
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue