diff --git a/lib/GADS/DateTime.pm b/lib/GADS/DateTime.pm index 816f79914..c74dde689 100644 --- a/lib/GADS/DateTime.pm +++ b/lib/GADS/DateTime.pm @@ -29,6 +29,7 @@ sub parse_datetime { my $value = shift; return undef if !$value; return $value if ref $value eq 'DateTime'; + $value =~ s/\.\d+$//; # Strip milliseconds my $dateformat = GADS::Config->instance->dateformat; # If there's a space in the input value, assume it includes a time as well $dateformat .= ' HH:mm:ss' if $value =~ / /;