Skip to content
This repository was archived by the owner on Mar 24, 2025. It is now read-only.

Commit e2e6ea6

Browse files
authored
Merge pull request #352 from geneccx/patch-1
Fix unqueueing cookies
2 parents c79eb3f + dfbc1f8 commit e2e6ea6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Server/Resetters/ResetCookie.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public function handle(Container $app, Sandbox $sandbox)
2020
if (isset($app['cookie'])) {
2121
$cookies = $app->make('cookie');
2222
foreach ($cookies->getQueuedCookies() as $key => $value) {
23-
$cookies->unqueue($key);
23+
$cookies->unqueue($value->getName());
2424
}
2525
}
2626

0 commit comments

Comments
 (0)