Philipp Hörist pushed to branch master at gajim / gajim
Commits:
67443ab9 by Nicoco at 2023-03-11T18:33:40+00:00
fix: Chatstates: Remove composing timeout correctly
- - - - -
1 changed file:
- gajim/common/modules/chatstates.py
Changes:
=====================================
gajim/common/modules/chatstates.py
=====================================
@@ -196,7 +196,8 @@ def _on_remote_composing_timeout(self, contact:
types.ContactT):
contact.notify('chatstate-update')
def _remove_remote_composing_timeout(self, contact: types.ContactT):
- source_id = self._delay_timeout_ids.pop(contact.jid, None)
+ source_id = self._remote_chatstate_composing_timeouts.pop(
+ contact.jid, None)
if source_id is not None:
self._log.debug('Removing remote composing timeout of %s', contact)
GLib.source_remove(source_id)
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/commit/67443ab934b47961e0f0ea876a2d1720ac744972
--
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/commit/67443ab934b47961e0f0ea876a2d1720ac744972
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