diff --git a/packages/backend/src/remote/activitypub/renderer/person.ts b/packages/backend/src/remote/activitypub/renderer/person.ts index a5d076251b..9a1bdd2c15 100644 --- a/packages/backend/src/remote/activitypub/renderer/person.ts +++ b/packages/backend/src/remote/activitypub/renderer/person.ts @@ -72,6 +72,7 @@ export async function renderPerson(user: ILocalUser) { tag, manuallyApprovesFollowers: user.isLocked, movedToUri: user.movedToUri, + alsoKnownAs: user.alsoKnownAs, discoverable: !!user.isExplorable, publicKey: renderKey(user, keypair, '#main-key'), isCat: user.isCat, diff --git a/packages/client/src/components/MkRemoteCaution.vue b/packages/client/src/components/MkRemoteCaution.vue index 4c141b7d41..a1167a1b2d 100644 --- a/packages/client/src/components/MkRemoteCaution.vue +++ b/packages/client/src/components/MkRemoteCaution.vue @@ -15,6 +15,7 @@ defineProps<{ padding: 16px; background: var(--infoWarnBg); color: var(--infoWarnFg); + font-size: 0.85rem; > .link { margin-left: 4px; diff --git a/packages/client/src/scripts/hpml/evaluator.ts b/packages/client/src/scripts/hpml/evaluator.ts index 10023edffb..640eb68476 100644 --- a/packages/client/src/scripts/hpml/evaluator.ts +++ b/packages/client/src/scripts/hpml/evaluator.ts @@ -75,7 +75,7 @@ export class Hpml { SEED: opts.randomSeed ? opts.randomSeed : '', YMD: `${date.getFullYear()}/${date.getMonth() + 1}/${date.getDate()}`, AISCRIPT_DISABLED: !this.opts.enableAiScript, - NULL: null + NULL: null, }; this.eval();