From 0239a81c382bcf1e793b35770b9bb5fd45b01836 Mon Sep 17 00:00:00 2001 From: James Booth Date: Sat, 13 Sep 2014 23:32:09 +0100 Subject: [PATCH] Added form validation for jid-single type --- src/command/commands.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/command/commands.c b/src/command/commands.c index e5612d9c..e7409a3e 100644 --- a/src/command/commands.c +++ b/src/command/commands.c @@ -1920,6 +1920,7 @@ cmd_room(gchar **args, struct cmd_help_t help) switch (field_type) { case FIELD_TEXT_SINGLE: case FIELD_TEXT_PRIVATE: + case FIELD_JID_SINGLE: form_set_value_by_tag(current->form, tag, value); ui_current_print_line("%s set to %s", tag, value); break;