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

Commits:
4a65f4ae by Philipp Hörist at 2018-02-05T20:55:48+01:00
Fix StartChatDialog

Fixes #8881

- - - - -


1 changed file:

- gajim/dialogs.py


Changes:

=====================================
gajim/dialogs.py
=====================================
--- a/gajim/dialogs.py
+++ b/gajim/dialogs.py
@@ -2836,8 +2836,8 @@ class StartChatDialog(Gtk.ApplicationWindow):
 
             for jid in groupchats:
                 name = groupchats[jid]
-                if name is None:
-                    name = app.get_nick_from_jid(groupchats[jid])
+                if not name:
+                    name = app.get_nick_from_jid(jid)
                 row = ContactRow(account, None, jid, name,
                                  show_account, True)
                 self.listbox.add(row)



View it on GitLab: 
https://dev.gajim.org/gajim/gajim/commit/4a65f4aeae70717494d5824a19bac454af0ca100

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