We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7bafb8a + 4c2a60d commit 833a5d6Copy full SHA for 833a5d6
1 file changed
Classes/Http/RequestStorageComponent.php
@@ -51,6 +51,10 @@ public function handle(ComponentContext $componentContext)
51
$cacheTags = $response->getHeader('X-CacheTags') ;
52
$entryIdentifier = md5((string)$request->getUri());
53
54
+ if (!is_array($cacheTags)) {
55
+ $cacheTags = [$cacheTags];
56
+ }
57
+
58
$publicLifetime = 0;
59
if ($this->maxPublicCacheTime > 0) {
60
if ($lifetime > 0 && $lifetime < $this->maxPublicCacheTime) {
0 commit comments