Skip to content

Commit

Permalink
TASK: Do not serialise removed dispatched state
Browse files Browse the repository at this point in the history
  • Loading branch information
mhsdesign committed Oct 28, 2024
1 parent d0de969 commit 96958c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Neos.Flow/Classes/Mvc/ActionRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -658,7 +658,7 @@ public function getFormat(): string
*/
public function __sleep()
{
$properties = ['controllerPackageKey', 'controllerSubpackageKey', 'controllerName', 'controllerActionName', 'arguments', 'internalArguments', 'pluginArguments', 'argumentNamespace', 'format', 'dispatched'];
$properties = ['controllerPackageKey', 'controllerSubpackageKey', 'controllerName', 'controllerActionName', 'arguments', 'internalArguments', 'pluginArguments', 'argumentNamespace', 'format'];
if ($this->parentRequest instanceof ActionRequest) {
$properties[] = 'parentRequest';
}
Expand Down

0 comments on commit 96958c2

Please sign in to comment.