From 0a3d7e4d3462da726414e426de06a7c4269cc1e9 Mon Sep 17 00:00:00 2001 From: Bas Date: Tue, 21 Jan 2025 14:20:12 +0100 Subject: [PATCH] Fix replay of deprovisioned auditlog events. --- .../ApiBundle/Identity/Entity/AuditLogEntry.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Surfnet/StepupMiddleware/ApiBundle/Identity/Entity/AuditLogEntry.php b/src/Surfnet/StepupMiddleware/ApiBundle/Identity/Entity/AuditLogEntry.php index cbd11073..e057891d 100644 --- a/src/Surfnet/StepupMiddleware/ApiBundle/Identity/Entity/AuditLogEntry.php +++ b/src/Surfnet/StepupMiddleware/ApiBundle/Identity/Entity/AuditLogEntry.php @@ -153,7 +153,7 @@ class AuditLogEntry implements JsonSerializable public ?string $secondFactorType = null; #[ORM\Column(length: 255, nullable: true)] - public ?string $recoveryTokenIdentifier; + public ?string $recoveryTokenIdentifier = null; #[ORM\Column(length: 36, nullable: true)] public ?string $recoveryTokenType = null;