Browse Source

Fix loading as guest

Signed-off-by: Julius Härtl <jus@bitgrid.net>
tags/v20.0.0beta1
Julius Härtl 3 years ago
parent
commit
2535e0ec04
No account linked to committer's email address
1 changed files with 3 additions and 0 deletions
  1. 3
    0
      apps/dashboard/lib/Service/BackgroundService.php

+ 3
- 0
apps/dashboard/lib/Service/BackgroundService.php View File

@@ -65,6 +65,9 @@ class BackgroundService {
];

public function __construct(IRootFolder $rootFolder, IAppData $appData, $userId) {
if ($userId === null) {
return;
}
$this->userFolder = $rootFolder->getUserFolder($userId);
try {
$this->dashboardUserFolder = $appData->getFolder($userId);

Loading…
Cancel
Save