Skip to content

Commit 7508fed

Browse files
authored
Merge pull request #29784 from nextcloud/bugfix/noid/app-summary-is-optional
App summary is optional
2 parents c35ad0c + 615a8e6 commit 7508fed

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/theming/lib/Controller/ThemingController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ public function getManifest($app) {
389389
} else {
390390
$startUrl = $this->urlGenerator->getBaseUrl() . '/apps/' . $app . '/';
391391
}
392-
$description = $info['summary'];
392+
$description = $info['summary'] ?? '';
393393
}
394394
$responseJS = [
395395
'name' => $name,

0 commit comments

Comments
 (0)