mirror of
https://github.com/nextcloud/server.git
synced 2026-04-21 14:23:17 -04:00
Fix redirect after rescanFailedIntegrityCheck to "Overview" page
The link of the rescanFailedIntegrityCheck link is on the sub page "Overview". After clicking the link, the user is, however, redirected to the "Basic settings" page. Signed-off-by: Sven Strickroth <email@cs-ware.de>
This commit is contained in:
parent
8427ecf685
commit
509dcbe774
1 changed files with 1 additions and 1 deletions
|
|
@ -334,7 +334,7 @@ class CheckSetupController extends Controller {
|
|||
public function rescanFailedIntegrityCheck() {
|
||||
$this->checker->runInstanceVerification();
|
||||
return new RedirectResponse(
|
||||
$this->urlGenerator->linkToRoute('settings.AdminSettings.index')
|
||||
$this->urlGenerator->linkToRoute('settings.AdminSettings.index', ['section' => 'overview'])
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue