Skip to content

Commit

Permalink
Merge pull request #3396 from acrobat/fix-requeststack-method
Browse files Browse the repository at this point in the history
[NodeBundle] Fix incorrect requeststack method for symfony 6.4
  • Loading branch information
acrobat authored Apr 11, 2024
2 parents 7e6070f + 9daabb2 commit f07cc45
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ private function incrementString($string, $append = '-v'): string

private function isInRequestScope(): bool
{
return $this->requestStack && $this->requestStack->getMasterRequest();
return $this->requestStack && $this->requestStack->getMainRequest();
}

private function getFlashBag()
Expand Down

0 comments on commit f07cc45

Please sign in to comment.