Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
Signed-off-by: Bjoern Schiessle <[email protected]>
  • Loading branch information
schiessle authored and ChristophWurst committed Jan 30, 2019
1 parent ab01402 commit 8ed004d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/private/Share20/Manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -776,11 +776,11 @@ protected function sendMailNotification(IL10N $l,
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;
}

Expand Down

0 comments on commit 8ed004d

Please sign in to comment.