From 950130528d82f29e9857db333bebfdf960257cf1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Sun, 9 Sep 2018 16:50:55 +0200 Subject: [PATCH] Request blocking list on connect --- gajim/common/connection_handlers.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/gajim/common/connection_handlers.py b/gajim/common/connection_handlers.py index 1a2047436..be039cbfd 100644 --- a/gajim/common/connection_handlers.py +++ b/gajim/common/connection_handlers.py @@ -580,11 +580,9 @@ class ConnectionHandlers(ConnectionSocks5Bytestream, # ask our VCard self.get_module('VCardTemp').request_vcard() - # Get bookmarks self.get_module('Bookmarks').get_bookmarks() - - # Get annotations from private namespace self.get_module('Annotations').get_annotations() + self.get_module('Blocking').get_blocking_list() # Inform GUI we just signed in app.nec.push_incoming_event(SignedInEvent(None, conn=self))