fix alsoKnownAs federation

This commit is contained in:
ThatOneCalculator 2022-12-12 11:25:28 -08:00
parent 6e9c62a1a2
commit 1f9ad0f61b
No known key found for this signature in database
GPG key ID: 8703CACD01000000
3 changed files with 3 additions and 1 deletions

View file

@ -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,

View file

@ -15,6 +15,7 @@ defineProps<{
padding: 16px;
background: var(--infoWarnBg);
color: var(--infoWarnFg);
font-size: 0.85rem;
> .link {
margin-left: 4px;

View file

@ -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();