uwu
This commit is contained in:
parent
44990a1ddb
commit
45929f95f4
|
@ -308,7 +308,10 @@ export function apiAccountMastodon(router: Router): void {
|
||||||
const ids = typeof idsRaw === "string" ? [idsRaw] : idsRaw;
|
const ids = typeof idsRaw === "string" ? [idsRaw] : idsRaw;
|
||||||
users = ids;
|
users = ids;
|
||||||
relationshopModel.id = idsRaw?.toString() || "1";
|
relationshopModel.id = idsRaw?.toString() || "1";
|
||||||
if (!ids) return [relationshopModel];
|
if (!ids) {
|
||||||
|
ctx.body = [relationshopModel];
|
||||||
|
return;
|
||||||
|
}
|
||||||
const data = await client.getRelationships(ids);
|
const data = await client.getRelationships(ids);
|
||||||
ctx.body = data.data;
|
ctx.body = data.data;
|
||||||
} catch (e: any) {
|
} catch (e: any) {
|
||||||
|
|
Loading…
Reference in New Issue