Issue 6438: Avoid fatal error
This commit is contained in:
parent
72516191ef
commit
8b5b66838d
|
@ -95,7 +95,9 @@ class JsonLD
|
||||||
|
|
||||||
// Workaround for Nextcloud Social
|
// Workaround for Nextcloud Social
|
||||||
// See issue https://github.com/nextcloud/social/issues/330
|
// See issue https://github.com/nextcloud/social/issues/330
|
||||||
$json['@context'][] = 'https://w3id.org/security/v1';
|
if (is_array($json['@context'])) {
|
||||||
|
$json['@context'][] = 'https://w3id.org/security/v1';
|
||||||
|
}
|
||||||
|
|
||||||
// Trying to avoid memory problems with large content fields
|
// Trying to avoid memory problems with large content fields
|
||||||
if (!empty($json['object']['source']['content'])) {
|
if (!empty($json['object']['source']['content'])) {
|
||||||
|
|
Loading…
Reference in a new issue