diff options
author | mathieui <mathieui@mathieui.net> | 2013-12-28 17:16:35 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2013-12-28 17:16:35 +0100 |
commit | f9e70fa656edc0af4477a90d3ec9122faa9bce15 (patch) | |
tree | 19e3822607bcf2544223a761ae56eb9467ae3cff /src | |
parent | 83b44c863ecbecab4dbd7d05d4ad4973a1293781 (diff) | |
download | poezio-f9e70fa656edc0af4477a90d3ec9122faa9bce15.tar.gz poezio-f9e70fa656edc0af4477a90d3ec9122faa9bce15.tar.bz2 poezio-f9e70fa656edc0af4477a90d3ec9122faa9bce15.tar.xz poezio-f9e70fa656edc0af4477a90d3ec9122faa9bce15.zip |
Previous commit with get/set
Diffstat (limited to 'src')
-rw-r--r-- | src/core.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core.py b/src/core.py index 9c99fb26..a2e59aa4 100644 --- a/src/core.py +++ b/src/core.py @@ -2531,7 +2531,7 @@ class Core(object): try: stanza = StanzaBase(self.xmpp, xml=ET.fromstring(arg)) if stanza.xml.tag == 'iq' and \ - stanza.xml.attrib.get('type') == 'get' and \ + stanza.xml.attrib.get('type') in ('get', 'set') and \ stanza.xml.attrib.get('id'): iq_id = stanza.xml.attrib.get('id') |