Merge pull request #16244 from nextcloud/backport/16241/stable16

[stable16] Fix redirect after rescanFailedIntegrityCheck to "Overview" page
This commit is contained in:
Roeland Jago Douma 2019-07-05 14:42:55 +02:00 committed by GitHub
commit aaea7c9146
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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'])
);
}