summaryrefslogtreecommitdiff
path: root/slixmpp/plugins/xep_0059
diff options
context:
space:
mode:
authorMadhur Garg <madhurgarg96@gmail.com>2019-07-03 10:31:18 +0530
committerMadhur Garg <madhurgarg96@gmail.com>2019-07-03 10:31:18 +0530
commitdbc9758311097c501c25b8e46b7c822957b47d55 (patch)
tree2453f4681c7f52f29fd608e25e1c11ba22023a65 /slixmpp/plugins/xep_0059
parent47968963b1819341563dbf39c782a69a00bf1644 (diff)
downloadslixmpp-dbc9758311097c501c25b8e46b7c822957b47d55.tar.gz
slixmpp-dbc9758311097c501c25b8e46b7c822957b47d55.tar.bz2
slixmpp-dbc9758311097c501c25b8e46b7c822957b47d55.tar.xz
slixmpp-dbc9758311097c501c25b8e46b7c822957b47d55.zip
Added 'reverse' parameter in mam and rsm plugins
Diffstat (limited to 'slixmpp/plugins/xep_0059')
-rw-r--r--slixmpp/plugins/xep_0059/rsm.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/slixmpp/plugins/xep_0059/rsm.py b/slixmpp/plugins/xep_0059/rsm.py
index a8eeea60..31278c2f 100644
--- a/slixmpp/plugins/xep_0059/rsm.py
+++ b/slixmpp/plugins/xep_0059/rsm.py
@@ -169,6 +169,6 @@ class XEP_0059(BasePlugin):
results -- The name of the interface containing the
query results (typically just 'substanzas').
"""
- return ResultIterator(stanza, interface, results,
+ return ResultIterator(stanza, interface, results, reverse=reverse,
recv_interface=recv_interface, pre_cb=pre_cb,
post_cb=post_cb)