Fix handling country=None in AttendeeProfile describe

This commit is contained in:
Richard Schreiber
2026-06-24 10:34:31 +02:00
parent e8492cad3c
commit 2aca779a1e
+1 -1
View File
@@ -395,7 +395,7 @@ class AttendeeProfile(models.Model):
self.company,
self.street,
(self.zipcode or '') + ' ' + (self.city or '') + ' ' + (self.state_for_address or ''),
self.country.name,
self.country.name if self.country else None,
]
for a in self.answers:
value = a.get('value')