Skip to content

Commit

Permalink
[BUGFIX] Omit default argument of RootlineUtility constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
vertexvaar committed Apr 30, 2024
1 parent c790628 commit 3003b9c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
$site = $this->siteFinder->getSiteByPageId($pageId);
} catch (SiteNotFoundException $e) {
try {
GeneralUtility::makeInstance(RootlineUtility::class, $pageId, null)->get();
GeneralUtility::makeInstance(RootlineUtility::class, $pageId)->get();
} catch (PageNotFoundException $e) {
return static::EXIT_PAGE_HIDDEN_OR_DISCONNECTED;
}
Expand Down

0 comments on commit 3003b9c

Please sign in to comment.