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 a708005 + 659747e commit bbd3a3cCopy full SHA for bbd3a3c
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