fix oopsie
This commit is contained in:
parent
d418fee933
commit
0c73344966
|
@ -305,7 +305,7 @@ export function apiAccountMastodon(router: Router): void {
|
||||||
let users;
|
let users;
|
||||||
try {
|
try {
|
||||||
// TODO: this should be body
|
// TODO: this should be body
|
||||||
const idsRaw = ctx.request.query ? ["id[]"] : null;
|
const idsRaw = ctx.request.query ? ctx.request.query["id[]"] : null;
|
||||||
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";
|
||||||
|
|
Loading…
Reference in New Issue