Merge pull request #5901 from annando/catch-error
Catching error when compacting doesn't work
This commit is contained in:
commit
6b2a12319c
1 changed files with 8 additions and 1 deletions
|
@ -92,7 +92,14 @@ class JsonLD
|
||||||
|
|
||||||
$jsonobj = json_decode(json_encode($json, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE));
|
$jsonobj = json_decode(json_encode($json, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE));
|
||||||
|
|
||||||
$compacted = jsonld_compact($jsonobj, $context);
|
|
||||||
|
try {
|
||||||
|
$compacted = jsonld_compact($jsonobj, $context);
|
||||||
|
}
|
||||||
|
catch (Exception $e) {
|
||||||
|
$compacted = false;
|
||||||
|
logger('compacting error:' . print_r($e, true), LOGGER_DEBUG);
|
||||||
|
}
|
||||||
|
|
||||||
return json_decode(json_encode($compacted, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE), true);
|
return json_decode(json_encode($compacted, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE), true);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue