This commit is contained in:
cutestnekoaqua 2023-02-13 20:36:13 +01:00
parent d83e2f2c7a
commit b209a9e533

View file

@ -308,7 +308,10 @@ export function apiAccountMastodon(router: Router): void {
const ids = typeof idsRaw === "string" ? [idsRaw] : idsRaw;
users = ids;
relationshopModel.id = idsRaw?.toString() || "1";
if (!ids) return [relationshopModel];
if (!ids) {
ctx.body = [relationshopModel];
return;
}
const data = await client.getRelationships(ids);
ctx.body = data.data;
} catch (e: any) {