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 backportbot-nextcloud[bot] committed Nov 8, 2022
commit 55381d77894868e89dad6552d20825c85eebe88e
2 changes: 1 addition & 1 deletion lib/MailQueueHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,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