diff options
Diffstat (limited to 'src/remote/activitypub/objects')
| -rw-r--r-- | src/remote/activitypub/objects/person.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/remote/activitypub/objects/person.ts b/src/remote/activitypub/objects/person.ts index 6c060f879c..b0539fd73b 100644 --- a/src/remote/activitypub/objects/person.ts +++ b/src/remote/activitypub/objects/person.ts @@ -96,7 +96,8 @@ export async function createPerson(value: any, resolver?: Resolver): Promise<IUs publicKeyPem: person.publicKey.publicKeyPem }, inbox: person.inbox, - uri: person.id + uri: person.id, + url: person.url }) as IRemoteUser; //#region アイコンとヘッダー画像をフェッチ |