Accept "application/json" as application type for ActivityPub

This commit is contained in:
Michael 2021-01-29 11:15:47 +00:00
parent 9a4128a5c8
commit b22d7452a3
1 changed files with 1 additions and 0 deletions

View File

@ -77,6 +77,7 @@ class ActivityPub
public static function isRequest()
{
return stristr($_SERVER['HTTP_ACCEPT'] ?? '', 'application/activity+json') ||
stristr($_SERVER['HTTP_ACCEPT'] ?? '', 'application/json') ||
stristr($_SERVER['HTTP_ACCEPT'] ?? '', 'application/ld+json');
}