From 69c9d4244dd74a56f3f045249a878e92de59fa48 Mon Sep 17 00:00:00 2001 From: Paul Wise Date: Fri, 12 Mar 2021 08:56:36 +0800 Subject: [PATCH] Fix default user for usertags It needs to have the same processing as all user addresses, otherwise it will include the name and spaces etc. Fixes: commit f13b9b4b919d80e6e90acf905452f8788e2b8c40 --- scripts/process | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/process b/scripts/process index 883c5124..f4af310d 100755 --- a/scripts/process +++ b/scripts/process @@ -684,7 +684,8 @@ if ($ref<0) { # new bug report writebug($ref, $data); $data->{bug_num} = $ref; # Deal with usertags - my $current_user = $replyto; + my $current_user; + unshift @usertag_bits, ['user', $replyto]; for my $field (@usertag_bits) { my ($name, $value) = @$field; if ($name eq 'user') { -- 2.47.3