Daniel Brötzmann pushed to branch master at gajim / gajim


Commits:
6e3dec33 by wurstsalat at 2023-04-16T16:33:59+02:00
cfix: ChatBanner: Use jid_to_iri for QR code

- - - - -


1 changed file:

- gajim/gtk/chat_banner.py


Changes:

=====================================
gajim/gtk/chat_banner.py
=====================================
@@ -37,6 +37,7 @@
 from gajim.common.modules.contacts import BareContact
 from gajim.common.modules.contacts import GroupchatContact
 from gajim.common.modules.contacts import GroupchatParticipant
+from gajim.common.util.text import jid_to_iri
 
 from gajim.gtk.builder import get_builder
 from gajim.gtk.groupchat_voice_requests_button import VoiceRequestsButton
@@ -334,7 +335,7 @@ def _update_share_box(self) -> None:
     def _on_share_clicked(self, _button: Gtk.Button) -> None:
         # Generate QR code on demand (i.e. not when switching chats)
         assert self._contact is not None
-        text = f'xmpp:{self._contact.jid}'
+        text = jid_to_iri(str(self._contact.jid))
         if self._contact.is_groupchat:
             text = f'{text}?join'
         self._ui.qr_code_image.set_from_pixbuf(generate_qr_code(text))



View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/commit/6e3dec332d3ac7b73a69190d1f5b88c9e82823a2

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

Reply via email to