Skip to content

Commit d264d93

Browse files
committed
Fixed issue with not passing URL params.
1 parent 306f454 commit d264d93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

JsonRpcRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ public function execute()
167167
if ($this->paramsPassMethod == Controller::JSON_RPC_PARAMS_PASS_BODY) {
168168
$app->request->setBodyParams($this->params);
169169
$app->request->setRawBody(Json::encode($this->params));
170-
$result = $app->runAction($routeParsed);
170+
$result = $app->runAction($routeParsed, $params);
171171
} else {
172172
if (ArrayHelper::isAssociative($this->params)) {
173173
$params += $this->params;

0 commit comments

Comments
 (0)