summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoe <joe@jerkface.net>2013-06-29 05:58:05 -0400
committerjoe <joe@jerkface.net>2013-06-29 05:58:05 -0400
commitf7af1aba310c1b5d8f66a1ba8339d131a2577e2f (patch)
tree5f21a5161acbbf18c8dc69ec90f70f0b5519db0a
parent23a5d2cfd9b293d6c86827c282e8571ace20de09 (diff)
fixed namespace for iq/bind/jid
-rw-r--r--Presence/XMPP.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Presence/XMPP.hs b/Presence/XMPP.hs
index 656ed170..c2ff6739 100644
--- a/Presence/XMPP.hs
+++ b/Presence/XMPP.hs
@@ -180,9 +180,9 @@ iq_bind_reply id jid =
180 180
181 , EventBeginElement "{urn:ietf:params:xml:ns:xmpp-bind}bind" 181 , EventBeginElement "{urn:ietf:params:xml:ns:xmpp-bind}bind"
182 [("xmlns",[ContentText "urn:ietf:params:xml:ns:xmpp-bind"])] 182 [("xmlns",[ContentText "urn:ietf:params:xml:ns:xmpp-bind"])]
183 , EventBeginElement "jid" [] 183 , EventBeginElement "{urn:ietf:params:xml:ns:xmpp-bind}jid" []
184 , EventContent (ContentText jid) 184 , EventContent (ContentText jid)
185 , EventEndElement "jid" 185 , EventEndElement "{urn:ietf:params:xml:ns:xmpp-bind}jid"
186 , EventEndElement "{urn:ietf:params:xml:ns:xmpp-bind}bind" 186 , EventEndElement "{urn:ietf:params:xml:ns:xmpp-bind}bind"
187 , EventEndElement "{jabber:client}iq" 187 , EventEndElement "{jabber:client}iq"
188 ] 188 ]