Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
This commit is contained in:
Bjoern Schiessle 2018-12-04 19:33:30 +01:00 committed by Christoph Wurst
parent ab01402599
commit 8ed004d6ae
No known key found for this signature in database
GPG Key ID: CC42AC2A7F0E56D8
1 changed files with 2 additions and 2 deletions

View File

@ -776,11 +776,11 @@ class Manager implements IManager {
try {
$failedRecipients = $this->mailer->send($message);
if(!empty($failedRecipients)) {
$this->logger->error('Share notification mail could not be send to: ' . implode(', ', $failedRecipients));
$this->logger->error('Share notification mail could not be sent to: ' . implode(', ', $failedRecipients));
return false;
}
} catch (\Exception $e) {
$this->logger->logException($e, ['message' => 'Share notification mail could not be send']);
$this->logger->logException($e, ['message' => 'Share notification mail could not be sent']);
return false;
}