From 2974d0eb4bd99284b379c91dad39733429b195f4 Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Thu, 14 Mar 2013 14:28:59 -0700 Subject: [PATCH] encode recips in Control too --- Debbugs/Control.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Debbugs/Control.pm b/Debbugs/Control.pm index 4b3a02a..0390ba7 100644 --- a/Debbugs/Control.pm +++ b/Debbugs/Control.pm @@ -3467,7 +3467,7 @@ sub append_action_to_log{ $msg = ''; if ((ref($param{message}) and @{$param{message}}) or length($param{message})) { push @records, {type => exists $param{recips}?'recips':'incoming-recv', - exists $param{recips}?(recips => [make_list($param{recips})]):(), + exists $param{recips}?(recips => [map {encode_utf8_safely($_)} make_list($param{recips})]):(), text => join('',make_list($param{message})), }; } -- 2.39.2