fix: minor comment fix

This commit is contained in:
Julian Lam
2025-12-01 10:25:32 -05:00
parent c365c1dc3e
commit 411baa21f4

View File

@@ -147,7 +147,7 @@ Actors.assert = async (ids, options = {}) => {
categories.add(actor.id);
}
}
if (
!typeOk ||
!activitypub._constants.requiredActorProps.every(prop => actor.hasOwnProperty(prop))
@@ -351,7 +351,7 @@ Actors.assertGroup = async (ids, options = {}) => {
}));
groups = groups.filter(Boolean); // remove unresolvable actors
// Build userData object for storage
// Build categoryData object for storage
const categoryObjs = (await activitypub.mocks.category(groups)).filter(Boolean);
const now = Date.now();