Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Do not pass an instance of User where a string is expected
Signed-off-by: Côme Chilliet <[email protected]>
  • Loading branch information
come-nc authored and blizzz committed Dec 1, 2022
commit 1bd7c350e428fae66dfbf85e497340f524de424e
2 changes: 1 addition & 1 deletion lib/MailQueueHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ protected function sendEmailToUser($userName, $email, $lang, $timezone, $maxTime
} catch (\Exception $e) {
$this->logger->logException($e, [
'message' => 'Failed sending activity email to user "{user}"',
'user' => $user,
'user' => $userName,
'app' => 'activity',
]);
return false;
Expand Down