Daniel Brötzmann pushed to branch master at gajim / gajim
Commits:
e0598f34 by wurstsalat at 2025-08-23T11:32:46+02:00
fix: VCard grid: Fix setting birthday
Fixes #12440
- - - - -
1 changed file:
- gajim/gtk/vcard_grid.py
Changes:
=====================================
gajim/gtk/vcard_grid.py
=====================================
@@ -881,7 +881,7 @@ def __init__(self, prop: BDayProperty, account: str) ->
None:
def _on_text_changed(self, entry: Gtk.Entry, _param: Any) -> None:
text = entry.get_text()
- assert self._prop is BDayProperty
+ assert isinstance(self._prop, BDayProperty)
self._prop.value = text
self._value_label.set_value(text)
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/commit/e0598f34f25aa17e1c57b9e633216b2896f8f9da
--
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/commit/e0598f34f25aa17e1c57b9e633216b2896f8f9da
You're receiving this email because of your account on dev.gajim.org.
_______________________________________________
Commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]