From 470fef0c3b772bf24ed161641ae9d2bd92fac4fa Mon Sep 17 00:00:00 2001 From: Christian Schneider Date: Tue, 25 Mar 2025 03:15:58 +0100 Subject: Handle pretty printed null including newlines in it::json_decode --- it.class | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'it.class') diff --git a/it.class b/it.class index 0733819..b93d49a 100644 --- a/it.class +++ b/it.class @@ -1263,7 +1263,7 @@ static function json_encode($data, $p = []) */ static function json_decode($json, $p = []) { - return ($data = json_decode($json, $p['assoc'])) === null && $json != 'null' ? it::error((array)$p['it_error'] + ['title' => "invalid json", 'body' => $json]) : $data; + return ($data = json_decode($json, $p['assoc'])) === null && trim($json) != 'null' ? it::error((array)$p['it_error'] + ['title' => "invalid json", 'body' => $json]) : $data; } /** -- cgit v1.2.3