We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb59791 commit 659747eCopy full SHA for 659747e
1 file changed
apps/settings/lib/Controller/AppSettingsController.php
@@ -131,7 +131,9 @@ public function getAppDiscoverJSON(): JSONResponse {
131
#[PublicPage]
132
#[NoCSRFRequired]
133
public function getAppDiscoverMedia(string $fileName): Response {
134
- $etag = $this->discoverFetcher->getETag() ?? date('Y-m');
+ $getEtag = $this->discoverFetcher->getETag() ?? date('Y-m');
135
+ $etag = trim($getEtag, '"');
136
+
137
$folder = null;
138
try {
139
$folder = $this->appData->getFolder('app-discover-cache');
0 commit comments