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.
2 parents 34003a0 + 659cdda commit 6596946Copy full SHA for 6596946
apps/settings/lib/Controller/AppSettingsController.php
@@ -128,7 +128,9 @@ public function getAppDiscoverJSON(): JSONResponse {
128
#[PublicPage]
129
#[NoCSRFRequired]
130
public function getAppDiscoverMedia(string $fileName): Response {
131
- $etag = $this->discoverFetcher->getETag() ?? date('Y-m');
+ $getEtag = $this->discoverFetcher->getETag() ?? date('Y-m');
132
+ $etag = trim($getEtag, '"');
133
+
134
$folder = null;
135
try {
136
$folder = $this->appData->getFolder('app-discover-cache');
0 commit comments