Skip to content

Commit 1ebd194

Browse files
committed
Fix logic that determines whether to apply HTTP caching headers based on Symphony user logged in status
1 parent 636bc1f commit 1ebd194

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extension.driver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ public function addCSS($context) {
321321
public function updateHeaders() {
322322

323323
// Don’t override/set HTTP caching headers if Symphony user is logged in
324-
if (!Frontend::instance()->isLoggedIn()) {
324+
if (Frontend::instance()->isLoggedIn()) {
325325
return false;
326326
}
327327

0 commit comments

Comments
 (0)