summaryrefslogtreecommitdiff
path: root/it.class
diff options
context:
space:
mode:
authorChristian Schneider2025-03-25 03:15:58 +0100
committerChristian Schneider2025-03-25 03:15:58 +0100
commit470fef0c3b772bf24ed161641ae9d2bd92fac4fa (patch)
tree33cec41d07fb7e7bbbbc8988e498cc740f2f1ce5 /it.class
parentd713c9103aaeffdcf47f5ce73e2c75dac4f1b76b (diff)
downloaditools-470fef0c3b772bf24ed161641ae9d2bd92fac4fa.tar.gz
itools-470fef0c3b772bf24ed161641ae9d2bd92fac4fa.tar.bz2
itools-470fef0c3b772bf24ed161641ae9d2bd92fac4fa.zip
Handle pretty printed null including newlines in it::json_decode
Diffstat (limited to 'it.class')
-rw-r--r--it.class2
1 files changed, 1 insertions, 1 deletions
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;
}
/**