temporary fixes in order to allow testing with mobilizon at this moment

This commit is contained in:
André Menrath 2023-12-12 17:00:35 +01:00
parent 665af185bf
commit 41412a9b34
3 changed files with 4 additions and 4 deletions

View file

@ -19,7 +19,7 @@ class Actor extends Base_Object {
/** /**
* @var string * @var string
*/ */
protected $type = 'Person'; protected $type = 'Group';
/** /**
* A reference to an ActivityStreams OrderedCollection comprised of * A reference to an ActivityStreams OrderedCollection comprised of

View file

@ -55,9 +55,9 @@ class Blog_User extends User {
*/ */
public function get_type() { public function get_type() {
if ( is_single_user() ) { if ( is_single_user() ) {
return 'Person'; return 'Application';
} else { } else {
return 'Group'; return 'Application';
} }
} }

View file

@ -41,7 +41,7 @@ class User extends Actor {
* *
* @var string * @var string
*/ */
protected $type = 'Person'; protected $type = 'Group';
/** /**
* If the User is discoverable. * If the User is discoverable.