mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-11 05:02:37 +01:00
🐛 fix #371
This commit is contained in:
parent
237137bd6e
commit
2af567b522
@ -31,10 +31,10 @@ router.patch("/", route({ body: "ChannelReorderSchema", permission: "MANAGE_CHAN
|
|||||||
|
|
||||||
await Promise.all([
|
await Promise.all([
|
||||||
body.map(async (x) => {
|
body.map(async (x) => {
|
||||||
if (!x.position && !x.parent_id) throw new HTTPError(`You need to at least specify position or parent_id`, 400);
|
if (x.position == null && !x.parent_id) throw new HTTPError(`You need to at least specify position or parent_id`, 400);
|
||||||
|
|
||||||
const opts: any = {};
|
const opts: any = {};
|
||||||
if (x.position) opts.position = x.position;
|
if (x.position != null) opts.position = x.position;
|
||||||
|
|
||||||
if (x.parent_id) {
|
if (x.parent_id) {
|
||||||
opts.parent_id = x.parent_id;
|
opts.parent_id = x.parent_id;
|
||||||
|
Loading…
Reference in New Issue
Block a user