You've already forked explain.depesz.com
mirror of
https://gitlab.com/depesz/explain.depesz.com.git
synced 2025-07-15 01:34:18 +02:00
Remove unnecessary second-level encoding
This caused problems when dealing with non-ascii characters, as it was already converted to utf by Mojo, and then again, by explain.depesz.com itself.
This commit is contained in:
@ -165,7 +165,7 @@ sub index {
|
|||||||
my $self = shift;
|
my $self = shift;
|
||||||
|
|
||||||
# plan
|
# plan
|
||||||
my $plan = encode( 'UTF-8', $self->req->param( 'plan' ) );
|
my $plan = $self->req->param( 'plan' );
|
||||||
|
|
||||||
# nothing to do...
|
# nothing to do...
|
||||||
return $self->render unless $plan;
|
return $self->render unless $plan;
|
||||||
|
Reference in New Issue
Block a user