fix: treat crm attribute as selected when assigned

This commit is contained in:
Björn Fromme
2024-04-17 15:50:54 +02:00
parent 71a1ad1e64
commit da907d8250
+1 -1
View File
@@ -162,7 +162,7 @@ class ResponseParser
;
$attributes[] = $attribute;
if (1 === preg_match('/^Hausleitung ([A-Z0-9]+)$/', $attributeLabel, $matches) && true === $attributeSelected) {
if (1 === preg_match('/^Hausleitung ([A-Z0-9]+)$/', $attributeLabel, $matches)) {
$isHouseManager = true;
$hotelCode = $matches[1];
}