Subject: | Plugin obliterates query params in $c->req->uri |
It seems that this plugin obliterates any query params in $c->req->uri.
I found this out when try to write some paging code which used
$c->req->uri_with().
I would hazard a guess that line 261 is the culprit:
$c->req->uri(URI->new($c->req->base . $c->req->path));
$c->req->params stays in tact so I've simple re-used that by doing:
$c->req->uri->query_form( $c->req->params );