Merge remote-tracking branch 'origin/develop' into activitypub

This commit is contained in:
Julian Lam
2024-02-06 14:58:06 -05:00
391 changed files with 2122 additions and 1091 deletions

View File

@@ -49,7 +49,7 @@ categoriesAPI.create = async function (caller, data) {
await hasAdminPrivilege(caller.uid);
const response = await categories.create(data);
const categoryObjs = await categories.getCategories([response.cid], caller.uid);
const categoryObjs = await categories.getCategories([response.cid]);
return categoryObjs[0];
};