Merge pull request #29784 from nextcloud/bugfix/noid/app-summary-is-optional

App summary is optional
This commit is contained in:
szaimen 2021-11-19 15:06:36 +01:00 committed by GitHub
commit 7508fedcb4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -389,7 +389,7 @@ class ThemingController extends Controller {
} else {
$startUrl = $this->urlGenerator->getBaseUrl() . '/apps/' . $app . '/';
}
$description = $info['summary'];
$description = $info['summary'] ?? '';
}
$responseJS = [
'name' => $name,