diff --git a/pandora_server/lib/PandoraFMS/Tools.pm b/pandora_server/lib/PandoraFMS/Tools.pm index c95324e79d..cf9f01f5e1 100755 --- a/pandora_server/lib/PandoraFMS/Tools.pm +++ b/pandora_server/lib/PandoraFMS/Tools.pm @@ -2391,17 +2391,14 @@ sub p_encode_json { sub p_decode_json { my ($pa_config, $data) = @_; my $decoded_data; - - if ($JSON::VERSION > 2.90) { + + if ($JSON::VERSION > 2.90) { # Initialize JSON manager. my $json = JSON->new->allow_nonref; - - $decoded_data = $json->decode($data); - } else { - if (!is_empty($decoded_data)) { - $decoded_data = decode_json($data); - } - } + $decoded_data = $json->decode($data); + } else { + $decoded_data = decode_json($data); + } return $decoded_data; }