fix: correct masked ip audit label

This commit is contained in:
Marek Miklewicz
2026-06-30 19:13:07 +02:00
parent 4fc787fea8
commit bef92cee77
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -143,7 +143,7 @@ final class Settings
public function auditClientIp(string $clientIp): string
{
return $this->ipMask() ? 'MASLED' : $clientIp;
return $this->ipMask() ? 'MASKED' : $clientIp;
}
public function sourceServerName(): string