Skip to content

Commit

Permalink
Merge pull request #26 from tafid/too_large_request_fix
Browse files Browse the repository at this point in the history
Moved params build from query to body, because of 414 too large reque…
  • Loading branch information
SilverFire committed May 27, 2020
2 parents 165fb0a + 66c13dc commit 7f2a8d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rest/QueryBuilder.php
Expand Up @@ -64,7 +64,7 @@ public function buildProtocolVersion(Query $query)

public function buildQueryParams(Query $query)
{
return $query->where;
return null;
}

public function buildFormParams(Query $query)
Expand All @@ -74,6 +74,6 @@ public function buildFormParams(Query $query)

public function buildBody(Query $query)
{
return null;
return $query->where;
}
}

0 comments on commit 7f2a8d1

Please sign in to comment.