diff --git a/gajim/common/client.py b/gajim/common/client.py index 8d3a3986fa159c836d4f2520cfda871bd3b8500b..0a078e6a31278164bd50893a70dec1851c9025a5 100644 --- a/gajim/common/client.py +++ b/gajim/common/client.py @@ -227,9 +227,6 @@ def _on_resume_successful(self, _client, _signal_name): if self._status_sync_on_resume: self._status_sync_on_resume = False self.update_presence() - else: - app.nec.push_incoming_event( - OurShowEvent(None, conn=self, show=self._status)) def _set_client_available(self): self._set_state(ClientState.AVAILABLE) @@ -418,9 +415,6 @@ def update_presence(self): self.get_module('MUC').update_presence() - app.nec.push_incoming_event( - OurShowEvent(None, conn=self, show=status)) - def get_module(self, name): return modules.get(self._account, name)