From a2559f173cb4da87895908b1c761fedce593e0c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Fromme?= Date: Wed, 14 May 2025 12:29:15 +0200 Subject: [PATCH] fix: use correct key to map gender --- src/Twig/AppRuntime.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Twig/AppRuntime.php b/src/Twig/AppRuntime.php index 762256d..188c23a 100644 --- a/src/Twig/AppRuntime.php +++ b/src/Twig/AppRuntime.php @@ -70,7 +70,7 @@ class AppRuntime implements RuntimeExtensionInterface return match ($gender) { 'M' => 'männlich', - 'F' => 'weiblich', + 'W' => 'weiblich', 'D' => 'divers', default => '', };