Philipp Hörist pushed to branch master at gajim / gajim


Commits:
54a86ded by Philipp Hörist at 2025-08-06T20:48:19+02:00
fix: Profile: Don’t escape nickname

Fixes #12420

- - - - -


1 changed file:

- gajim/gtk/profile.py


Changes:

=====================================
gajim/gtk/profile.py
=====================================
@@ -300,7 +300,7 @@ def _on_save_clicked(self, _button: Gtk.Button) -> None:
 
         self._avatar_nick_public = public
 
-        nick = GLib.markup_escape_text(self._ui.nickname_entry.get_text())
+        nick = self._ui.nickname_entry.get_text()
         client.get_module("UserNickname").set_nickname(nick, public=public)
 
         if not nick:



View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/commit/54a86ded20cbda887e56edeca0b5f072038807c7

-- 
View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/commit/54a86ded20cbda887e56edeca0b5f072038807c7
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]

Reply via email to