From: Andrew DeFaria Date: Fri, 13 Aug 2021 12:31:20 +0000 (-0700) Subject: Fixed bug in AddLog X-Git-Url: https://defaria.com/gitweb/?a=commitdiff_plain;h=3cf78733a693c64eff64d3e72485194b07484e12;p=clearscm.git Fixed bug in AddLog --- diff --git a/maps/lib/MAPS.pm b/maps/lib/MAPS.pm index 5802aa5..73c0d4d 100644 --- a/maps/lib/MAPS.pm +++ b/maps/lib/MAPS.pm @@ -311,8 +311,7 @@ sub AddLog(%) { my (%params) = @_; # Some email senders are coming in mixed case. We don't want that - $params{pattern} = $params{pattern} ? lc $params{pattern} : ''; - $params{domain} = $params{domain} ? lc $params{domain} : ''; + $params{sender} = $params{sender} ? lc $params{sender} : ''; $params{timestamp} = UnixDatetime2SQLDatetime(scalar(localtime));