diff options
author | Matthew Wild <mwild1@gmail.com> | 2020-04-23 13:16:25 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2020-04-23 13:16:25 +0100 |
commit | 57124da02abba1e3716207c53309cf358d4c401f (patch) | |
tree | 01fc665a0bdcfea14360041d8b0c2932e4b56632 /plugins/muc/muc.lib.lua | |
parent | 5291ea4c7c281cedc3d6810743b533628412305c (diff) | |
download | prosody-57124da02abba1e3716207c53309cf358d4c401f.tar.gz prosody-57124da02abba1e3716207c53309cf358d4c401f.zip |
MUC: Always include 'affiliation'/'role' attributes, defaulting to 'none' if nil
Diffstat (limited to 'plugins/muc/muc.lib.lua')
-rw-r--r-- | plugins/muc/muc.lib.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/muc/muc.lib.lua b/plugins/muc/muc.lib.lua index bc370da5..93334b88 100644 --- a/plugins/muc/muc.lib.lua +++ b/plugins/muc/muc.lib.lua @@ -143,7 +143,7 @@ end -- actor is the attribute table local function add_item(x, affiliation, role, jid, nick, actor_nick, actor_jid, reason) - x:tag("item", {affiliation = affiliation; role = role; jid = jid; nick = nick;}) + x:tag("item", {affiliation = affiliation or "none"; role = role; jid = jid; nick = nick;}) if actor_nick or actor_jid then x:tag("actor", {nick = actor_nick; jid = actor_jid;}):up() end |