aboutsummaryrefslogtreecommitdiffstats
path: root/apps/settings/lib/Controller
diff options
context:
space:
mode:
authorFerdinand Thiessen <opensource@fthiessen.de>2024-03-18 17:50:12 +0100
committerAndy Scherzinger <info@andy-scherzinger.de>2024-03-19 09:36:06 +0100
commitbae133bf4f43b4815734b2c05c0263061cae2cfa (patch)
tree5bc5588ff4a955c288aea7e65f0efa4279217839 /apps/settings/lib/Controller
parent6101abbb2dd9408cdda666ec491751447dc1ab07 (diff)
downloadnextcloud-server-bae133bf4f43b4815734b2c05c0263061cae2cfa.tar.gz
nextcloud-server-bae133bf4f43b4815734b2c05c0263061cae2cfa.zip
fix(AppDiscoverFetcher): Do not remove entries as expired that have no expiry date
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'apps/settings/lib/Controller')
-rw-r--r--apps/settings/lib/Controller/AppSettingsController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings/lib/Controller/AppSettingsController.php b/apps/settings/lib/Controller/AppSettingsController.php
index 5d92b02d5c1..9dfe4772b93 100644
--- a/apps/settings/lib/Controller/AppSettingsController.php
+++ b/apps/settings/lib/Controller/AppSettingsController.php
@@ -131,7 +131,7 @@ class AppSettingsController extends Controller {
* @NoCSRFRequired
*/
public function getAppDiscoverJSON(): JSONResponse {
- $data = $this->discoverFetcher->get();
+ $data = $this->discoverFetcher->get(true);
return new JSONResponse($data);
}