Issue 12419: Quickhack to make GoToSocial work
This commit is contained in:
parent
45ee7d55f0
commit
e733adcaae
|
@ -177,6 +177,12 @@ class JsonLD
|
||||||
if (!in_array('https://w3id.org/security/v1', $json['@context'])) {
|
if (!in_array('https://w3id.org/security/v1', $json['@context'])) {
|
||||||
$json['@context'][] = 'https://w3id.org/security/v1';
|
$json['@context'][] = 'https://w3id.org/security/v1';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Issue 12419: Workaround for GoToSocial
|
||||||
|
$pos = array_search('http://joinmastodon.org/ns', $json['@context']);
|
||||||
|
if (is_int($pos)) {
|
||||||
|
$json['@context'][$pos] = ['toot' => 'http://joinmastodon.org/ns#'];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Bookwyrm transmits "id" fields with "null", which isn't allowed.
|
// Bookwyrm transmits "id" fields with "null", which isn't allowed.
|
||||||
|
|
Loading…
Reference in a new issue