@@ -, +, @@ --- C4/Suggestions.pm | 2 ++ 1 file changed, 2 insertions(+) --- a/C4/Suggestions.pm +++ a/C4/Suggestions.pm @@ -531,7 +531,9 @@ sub ModSuggestion { # fetch the entire updated suggestion so that we can populate the letter my $full_suggestion = GetSuggestion( $suggestion->{suggestionid} ); + my $patron = Koha::Patrons->find( $full_suggestion->{suggestedby} ); + return unless $patron; my $transport = (C4::Context->preference("FallbackToSMSIfNoEmail")) && ($patron->smsalertnumber) && (!$patron->email) ? 'sms' : 'email'; --