Commit c5718f38 authored by justdave%bugzilla.org's avatar justdave%bugzilla.org

Bug 227172: Deal with race condition between a user being removed from the CC on…

Bug 227172: Deal with race condition between a user being removed from the CC on a bug and changing their email address before the bugmail is sent. r=jouni, a=justdave
parent 807c8163
......@@ -705,6 +705,9 @@ sub NewProcessOnePerson ($$$$$$$$$$$$$) {
# This routine should really get passed a userid
# This rederives groups as a side effect
my $user = Bugzilla::User->new_from_login($person);
if (!$user) { # person doesn't exist, probably changed email
return;
}
my $userid = $user->id;
$seen{$person} = 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment