allows public acces to public profiles

This commit is contained in:
Christian Beutel
2025-07-04 11:11:56 +02:00
parent 7c478f6f3f
commit a7194027d8
6 changed files with 31 additions and 30 deletions

View File

@@ -44,7 +44,7 @@ export async function follows_a_b(a: string, b: string, f: (url: RequestInfo | U
const response: ListResult<Follow> = await r.json();
return response.items.at(0);
return response.items.at(0) ?? null;
}
export async function follows_create(followee: string) {