Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnna <anna@nextcloud.com>2022-06-08 11:24:57 +0300
committerGitHub <noreply@github.com>2022-06-08 11:24:57 +0300
commitaf2869ff30ecee2a404c488691ff5aa22b7efc7c (patch)
tree19362da782b0b0c26b616ab2d5a7562f9aea830f
parent7c74bd79a626934b372d6b8cf5e1fb929f272cdd (diff)
parent5664a34aad65f0d483dd13752f1892563f2a3356 (diff)
Merge pull request #6680 from nextcloud/fix/update-new-message
Fix missing default value for `failed` of outbox messages
-rw-r--r--lib/Controller/OutboxController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Controller/OutboxController.php b/lib/Controller/OutboxController.php
index 5b184d37c..d9b11570a 100644
--- a/lib/Controller/OutboxController.php
+++ b/lib/Controller/OutboxController.php
@@ -155,7 +155,7 @@ class OutboxController extends Controller {
string $subject,
string $body,
bool $isHtml,
- bool $failed,
+ bool $failed = false,
array $to = [],
array $cc = [],
array $bcc = [],