aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/muc
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2019-11-02 14:22:06 +0100
committerKim Alvefur <zash@zash.se>2019-11-02 14:22:06 +0100
commitfb0fee842496d9cf89464479406352161f2888bd (patch)
tree1d9b37e9f7cfa81ba1004615fdc2d35fa2ecf8b0 /plugins/muc
parent522916d7c71c35d61d03ff25dc5d8e726f6bf9b3 (diff)
downloadprosody-fb0fee842496d9cf89464479406352161f2888bd.tar.gz
prosody-fb0fee842496d9cf89464479406352161f2888bd.zip
MUC: Make nickname field in registration form required
Prevents traceback from resourceprep(nil) muc#register_roomnick is also required in XEP-0045
Diffstat (limited to 'plugins/muc')
-rw-r--r--plugins/muc/register.lib.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/muc/register.lib.lua b/plugins/muc/register.lib.lua
index 4ae393c7..bf8cd877 100644
--- a/plugins/muc/register.lib.lua
+++ b/plugins/muc/register.lib.lua
@@ -53,7 +53,7 @@ end);
local registration_form = dataforms.new {
{ name = "FORM_TYPE", type = "hidden", value = "http://jabber.org/protocol/muc#register" },
- { name = "muc#register_roomnick", type = "text-single", label = "Nickname"},
+ { name = "muc#register_roomnick", type = "text-single", required = true, label = "Nickname"},
};
local function enforce_nick_policy(event)