fix: add missing parsing of participants' nationality

This commit is contained in:
Björn Fromme
2025-01-26 20:33:04 +01:00
parent 8e931c95e3
commit 51086a284f
@@ -120,6 +120,7 @@ class BookingParser extends AbstractParser
$personalData->title = $this->getStringOrNullValue($node->filterXPath('//titel'));
$genderValue = $this->getStringOrNullValue($node->filterXPath('//geschlecht'));
$personalData->gender = null !== $genderValue ? strtoupper($genderValue) : null;
$personalData->nationality = $this->getStringOrNullValue($node->filterXPath('//nationalitaet'));
$personalData->height = $this->getStringOrNullValue($node->filterXPath('//sonstiges1'));
$personalData->weight = $this->getStringOrNullValue($node->filterXPath('//sonstiges2'));