|
|
@@ -1294,7 +1294,7 @@ module.exports = function(crowi) {
|
|
|
// find manageable descendants
|
|
|
const pages = await this.findManageableListWithDescendants(targetPage, user, options);
|
|
|
|
|
|
- await Promise.all(pages.map((page) => {
|
|
|
+ Promise.allSettled(pages.map((page) => {
|
|
|
const newPagePath = page.path.replace(pathRegExp, newPagePathPrefix);
|
|
|
return this.rename(page, newPagePath, user, options);
|
|
|
}));
|