From 161774edf97670670a1973cef079db559b7645d0 Mon Sep 17 00:00:00 2001 From: lovetox <philipp@hoerist.com> Date: Mon, 4 Jan 2021 23:10:17 +0100 Subject: [PATCH] VCardGrid: Fix storing org property values Fixes #10377 --- gajim/gtk/vcard_grid.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gajim/gtk/vcard_grid.py b/gajim/gtk/vcard_grid.py index 7c3f67b99a..dd7f814419 100644 --- a/gajim/gtk/vcard_grid.py +++ b/gajim/gtk/vcard_grid.py @@ -583,7 +583,7 @@ def __init__(self, prop, account): def _on_text_changed(self, entry, _param): text = entry.get_text() if self._prop.name == 'org': - self._prop.values[0] = text + self._prop.values = [text] else: self._prop.value = text self._value_label.set_value(text) -- GitLab