summaryrefslogtreecommitdiffstats
path: root/lib/Controller/ExportController.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Controller/ExportController.php')
-rw-r--r--lib/Controller/ExportController.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/Controller/ExportController.php b/lib/Controller/ExportController.php
index 4bd4c667d..ad1975639 100644
--- a/lib/Controller/ExportController.php
+++ b/lib/Controller/ExportController.php
@@ -31,15 +31,14 @@ class ExportController extends Controller
private $itemService;
public function __construct(
- string $appName,
IRequest $request,
FolderServiceV2 $folderService,
FeedServiceV2 $feedService,
ItemServiceV2 $itemService,
OpmlService $opmlService,
- IUserSession $userSession
+ ?IUserSession $userSession
) {
- parent::__construct($appName, $request, $userSession);
+ parent::__construct($request, $userSession);
$this->feedService = $feedService;
$this->folderService = $folderService;
$this->opmlService = $opmlService;