From 6a4550b1f7dc206dc4a11960c4769abb51552b17 Mon Sep 17 00:00:00 2001 From: Maxence Lange Date: Tue, 17 Jan 2023 14:17:54 -0100 Subject: [PATCH] local acct is username Signed-off-by: Maxence Lange --- lib/Model/ActivityPub/Actor/Person.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/Model/ActivityPub/Actor/Person.php b/lib/Model/ActivityPub/Actor/Person.php index f2c88641..302301f2 100644 --- a/lib/Model/ActivityPub/Actor/Person.php +++ b/lib/Model/ActivityPub/Actor/Person.php @@ -721,7 +721,7 @@ class Person extends ACore implements IQueryRow, JsonSerializable { $result = [ "username" => $this->getPreferredUsername(), - "acct" => $this->getAccount(), + "acct" => $this->isLocal() ? $this->getPreferredUsername() : $this->getAccount(), "display_name" => $this->getDisplayName(), "locked" => $this->isLocked(), "bot" => $this->isBot(), @@ -731,7 +731,6 @@ class Person extends ACore implements IQueryRow, JsonSerializable { "note" => $this->getDescription(), "url" => $this->getId(), "avatar" => $this->getAvatar(), - // "avatar_static" => "https://files.mastodon.social/accounts/avatars/000/126/222/original/50785214e44d10cc.jpeg", "avatar_static" => $this->getAvatar(), "header" => $this->getHeader(), "header_static" => $this->getHeader(),