diff --git a/pandora_server/lib/PandoraFMS/Tools.pm b/pandora_server/lib/PandoraFMS/Tools.pm index f30b1e1cee..7d7c3fbfd9 100755 --- a/pandora_server/lib/PandoraFMS/Tools.pm +++ b/pandora_server/lib/PandoraFMS/Tools.pm @@ -2462,7 +2462,7 @@ sub p_decode_json { if ($JSON::VERSION > 2.90) { # Initialize JSON manager. - my $json = JSON->new->allow_nonref; + my $json = JSON->new->utf8->allow_nonref; $decoded_data = $json->decode($data); } else { $decoded_data = decode_json($data);