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


Commits:
161774ed by lovetox at 2021-01-04T23:12:31+01:00
VCardGrid: Fix storing org property values

Fixes #10377

- - - - -


1 changed file:

- gajim/gtk/vcard_grid.py


Changes:

=====================================
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)



View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/commit/161774edf97670670a1973cef079db559b7645d0

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