From b35f5e92682663dcefd0c6d84cae5d24348a7a72 Mon Sep 17 00:00:00 2001 From: Florian Schmaus Date: Thu, 30 Apr 2020 22:19:56 +0200 Subject: [PATCH] caps: fix complex generation example by adding missing form field type The default form field type is text-single, but the hyptothetical field ip_version has multiple values and hence can not be of type text-single. --- xep-0115.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xep-0115.xml b/xep-0115.xml index 386cb4d4..fd2743c6 100644 --- a/xep-0115.xml +++ b/xep-0115.xml @@ -345,7 +345,7 @@ <field var='FORM_TYPE' type='hidden'> <value>urn:xmpp:dataforms:softwareinfo</value> </field> - <field var='ip_version'> + <field var='ip_version' type='text-multi' > <value>ipv4</value> <value>ipv6</value> </field>