Philipp Hörist pushed to branch master at gajim / gajim
Commits:
f8a10e4c by Philipp Hörist at 2025-01-29T18:44:57+01:00
fix: Blocking: Don’t convert to lower case when saving
- - - - -
1 changed file:
- gajim/gtk/blocking.py
Changes:
=====================================
gajim/gtk/blocking.py
=====================================
@@ -120,7 +120,7 @@ def _on_save(self, _button: Gtk.Button) -> None:
if not item[0]:
# No address/placeholder
continue
- blocked_jids.add(JID.from_string(item[0].lower()))
+ blocked_jids.add(JID.from_string(item[0]))
unblock_jids = self._prev_blocked_jids - blocked_jids
block_jids = blocked_jids - self._prev_blocked_jids
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/commit/f8a10e4c0c60e9adedac3c2666fca49d3e0affe1
--
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/commit/f8a10e4c0c60e9adedac3c2666fca49d3e0affe1
You're receiving this email because of your account on dev.gajim.org.
_______________________________________________
Commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]