summaryrefslogtreecommitdiff
path: root/poezio/multiuserchat.py
diff options
context:
space:
mode:
authorMadhur Garg <madhurgarg96@gmail.com>2019-08-12 01:12:59 +0530
committerMadhur Garg <madhurgarg96@gmail.com>2019-08-22 00:54:25 +0530
commita372e5f49fa78692589aad3b121b1059dcc66b77 (patch)
treedaaf9b58bd96fc4383f1e66c810c7d2378907bf6 /poezio/multiuserchat.py
parent4818210a6373261dcc122bb3c699b303ee5bd12f (diff)
downloadpoezio-a372e5f49fa78692589aad3b121b1059dcc66b77.tar.gz
poezio-a372e5f49fa78692589aad3b121b1059dcc66b77.tar.bz2
poezio-a372e5f49fa78692589aad3b121b1059dcc66b77.tar.xz
poezio-a372e5f49fa78692589aad3b121b1059dcc66b77.zip
Added a call to scroll for 10 messages on initially joining the room.
Diffstat (limited to 'poezio/multiuserchat.py')
-rw-r--r--poezio/multiuserchat.py11
1 files changed, 5 insertions, 6 deletions
diff --git a/poezio/multiuserchat.py b/poezio/multiuserchat.py
index ee596a0f..49e40791 100644
--- a/poezio/multiuserchat.py
+++ b/poezio/multiuserchat.py
@@ -13,7 +13,6 @@ slix plugin
from xml.etree import cElementTree as ET
from poezio.common import safeJID
-from poezio import mam
from slixmpp import JID
from slixmpp.exceptions import IqError, IqTimeout
import logging
@@ -124,11 +123,11 @@ def join_groupchat(core,
history = ET.Element('{http://jabber.org/protocol/muc}history')
history.attrib['seconds'] = str(0)
x.append(history)
- mam.mam_scroll(core.tabs.current_tab)
- elif seconds is not None:
- history = ET.Element('{http://jabber.org/protocol/muc}history')
- history.attrib['seconds'] = str(seconds)
- x.append(history)
+ else:
+ if seconds is not None:
+ history = ET.Element('{http://jabber.org/protocol/muc}history')
+ history.attrib['seconds'] = str(seconds)
+ x.append(history)
stanza.append(x)
core.events.trigger('joining_muc', stanza)
to = stanza["to"]