aboutsummaryrefslogtreecommitdiff
path: root/xmpp-vala/src/module/stanza_error.vala
diff options
context:
space:
mode:
authorfiaxh <git@mx.ax.lt>2017-05-30 22:17:41 +0200
committerfiaxh <git@mx.ax.lt>2017-05-30 22:28:36 +0200
commit3a8df2069eba3a5a4174749fc46a6698c1877ec1 (patch)
treeb39cffc773f3984acaa7dab92d0eb160faa48e32 /xmpp-vala/src/module/stanza_error.vala
parent142257a544b36e60b738e55e5f9f096f1169c389 (diff)
downloaddino-3a8df2069eba3a5a4174749fc46a6698c1877ec1.tar.gz
dino-3a8df2069eba3a5a4174749fc46a6698c1877ec1.zip
MUC config form (data forms), MUC room info
Diffstat (limited to 'xmpp-vala/src/module/stanza_error.vala')
-rw-r--r--xmpp-vala/src/module/stanza_error.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmpp-vala/src/module/stanza_error.vala b/xmpp-vala/src/module/stanza_error.vala
index be4633e9..b34caeb0 100644
--- a/xmpp-vala/src/module/stanza_error.vala
+++ b/xmpp-vala/src/module/stanza_error.vala
@@ -40,7 +40,7 @@ namespace Xmpp {
public string condition {
get {
- ArrayList<StanzaNode> subnodes = error_node.sub_nodes;
+ Gee.List<StanzaNode> subnodes = error_node.sub_nodes;
foreach (StanzaNode subnode in subnodes) { // TODO get subnode by ns
if (subnode.ns_uri == "urn:ietf:params:xml:ns:xmpp-stanzas") {
return subnode.name;