Philipp Hörist pushed to branch mainwindow at gajim / gajim
Commits:
790ec5b9 by lovetox at 2021-05-23T21:06:14+02:00
Fix Status Message Dialog
- - - - -
1 changed file:
- gajim/gtk/status_change.py
Changes:
=====================================
gajim/gtk/status_change.py
=====================================
@@ -542,17 +542,14 @@ def _send_user_activity(self):
def _send_status_and_message(self, message):
if self.account is not None:
- app.interface.roster.send_status(self.account,
- self._status,
- message)
+ app.get_client(self.account).change_status(self._status, message)
return
for account in app.connections:
if not app.settings.get_account_setting(
account, 'sync_with_global_status'):
continue
-
- app.interface.roster.send_status(account, self._status, message)
+ app.get_client(account).change_status(self._status, message)
def _change_status(self, *args):
self.stop_timeout()
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/commit/790ec5b9edfb9cba6a11f6dedfbf90627b226576
--
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/commit/790ec5b9edfb9cba6a11f6dedfbf90627b226576
You're receiving this email because of your account on dev.gajim.org.
_______________________________________________
Commits mailing list
[email protected]
https://lists.gajim.org/cgi-bin/listinfo/commits