You've already forked explain.depesz.com
mirror of
https://gitlab.com/depesz/explain.depesz.com.git
synced 2025-07-13 01:30:14 +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;
|
||||
|
||||
# plan
|
||||
my $plan = encode( 'UTF-8', $self->req->param( 'plan' ) );
|
||||
my $plan = $self->req->param( 'plan' );
|
||||
|
||||
# nothing to do...
|
||||
return $self->render unless $plan;
|
||||
|
Reference in New Issue
Block a user