We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e6dc5f commit ada25fdCopy full SHA for ada25fd
1 file changed
src/Controller/OAuthController.php
@@ -68,7 +68,9 @@ public function beforeFilter(Event $event): void
68
$query = $this->request->getQueryParams();
69
unset($query['prompt']);
70
$uri = $this->request->getUri();
71
- $this->request = $this->request->withUri($uri->withQuery(http_build_query($query)));
+ $this->request = $this->request
72
+ ->withQueryParams($query)
73
+ ->withUri($uri->withQuery(http_build_query($query)));
74
}
75
76
0 commit comments