summaryrefslogtreecommitdiffstats
path: root/lib/Controller/FeedController.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Controller/FeedController.php')
-rw-r--r--lib/Controller/FeedController.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/Controller/FeedController.php b/lib/Controller/FeedController.php
index 5881d7eb9..5abcd3393 100644
--- a/lib/Controller/FeedController.php
+++ b/lib/Controller/FeedController.php
@@ -44,15 +44,14 @@ class FeedController extends Controller
private $settings;
public function __construct(
- string $appName,
IRequest $request,
FolderServiceV2 $folderService,
FeedService $feedService,
ItemService $itemService,
IConfig $settings,
- IUserSession $userSession
+ ?IUserSession $userSession
) {
- parent::__construct($appName, $request, $userSession);
+ parent::__construct($request, $userSession);
$this->folderService = $folderService;
$this->feedService = $feedService;
$this->itemService = $itemService;