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:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2022-11-02 21:14:59 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2022-11-02 21:14:59 +0300
commitdcaad14f8bc1c710e15a1a58ea4ce138dc32e993 (patch)
treedbae5255b33fdfa8165936efaacb8d55c01f53e3
parentfb446620fbeed10396d4262034f58d21ae372cc3 (diff)
Fix server error accessing message routes anonymously
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
-rwxr-xr-xlib/Controller/MessagesController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Controller/MessagesController.php b/lib/Controller/MessagesController.php
index f64c5e29d..ca041cd84 100755
--- a/lib/Controller/MessagesController.php
+++ b/lib/Controller/MessagesController.php
@@ -67,7 +67,7 @@ class MessagesController extends Controller {
private ItineraryService $itineraryService;
private ?string $currentUserId;
private LoggerInterface $logger;
- private Folder $userFolder;
+ private ?Folder $userFolder;
private IMimeTypeDetector $mimeTypeDetector;
private IL10N $l10n;
private IURLGenerator $urlGenerator;