summaryrefslogtreecommitdiff
path: root/src/core.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/core.py')
-rw-r--r--src/core.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core.py b/src/core.py
index dfea7dd3..9deac05c 100644
--- a/src/core.py
+++ b/src/core.py
@@ -196,6 +196,8 @@ class Core(object):
self.xmpp.add_event_handler("attention", self.on_attention)
self.xmpp.register_handler(Callback('ALL THE STANZAS', connection.MatchAll(None), self.incoming_stanza))
+ self.initial_joins = []
+
self.timed_events = set()
self.connected_events = {}
@@ -638,6 +640,7 @@ class Core(object):
if not tab:
self.open_new_room(bm.jid, bm.nick, False)
nick = bm.nick if bm.nick else self.own_nick
+ self.initial_joins.append(bm.jid)
muc.join_groupchat(self.xmpp, bm.jid, nick)
def on_groupchat_presence(self, presence):