* Update update.ts

* Update api.ts
This commit is contained in:
Acid Chicken (硫酸鶏)
2019-03-26 22:24:14 +09:00
committed by syuilo
parent 52225d703b
commit 8ce1d4d6a3
2 changed files with 17 additions and 1 deletions

View File

@ -83,7 +83,9 @@ export default define(meta, async (ps, user) => {
if (ps.name) folder.name = ps.name;
if (ps.parentId !== undefined) {
if (ps.parentId === null) {
if (ps.parentId.equals(folder._id)) {
throw new ApiError(meta.errors.recursiveNesting);
} else if (ps.parentId === null) {
folder.parentId = null;
} else {
// Get parent folder