From 9373e7b4847a28bff397fbfc600b4e1566aa7543 Mon Sep 17 00:00:00 2001 From: wurstsalat Date: Wed, 29 Nov 2023 22:21:50 +0100 Subject: cfix: StartChat: Use fitting variable name for GroupBadge --- gajim/gtk/start_chat.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gajim/gtk/start_chat.py b/gajim/gtk/start_chat.py index abdbc3a0f..39efaf992 100644 --- a/gajim/gtk/start_chat.py +++ b/gajim/gtk/start_chat.py @@ -823,8 +823,8 @@ class ContactRow(Gtk.ListBoxRow): if contact and not contact.is_groupchat and not contact.is_pm_contact: groups = contact.groups for group in groups: - account_badge = GroupBadge(group) - name_box.add(account_badge) + group_badge = GroupBadge(group) + name_box.add(group_badge) box.add(name_box) -- cgit v1.2.3