diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-03-18 17:50:12 +0100 |
---|---|---|
committer | Andy Scherzinger <info@andy-scherzinger.de> | 2024-03-19 09:36:06 +0100 |
commit | bae133bf4f43b4815734b2c05c0263061cae2cfa (patch) | |
tree | 5bc5588ff4a955c288aea7e65f0efa4279217839 /apps | |
parent | 6101abbb2dd9408cdda666ec491751447dc1ab07 (diff) | |
download | nextcloud-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')
-rw-r--r-- | apps/settings/lib/Controller/AppSettingsController.php | 2 |
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); } |