diff --git a/packages/comments/lib/createComment.ts b/packages/comments/lib/createComment.ts index 20676c85..c86080ad 100644 --- a/packages/comments/lib/createComment.ts +++ b/packages/comments/lib/createComment.ts @@ -121,9 +121,7 @@ export async function createComment({ } else if (entityType === 'LIST') { const list = await getList({ id: entityId }) - if ([authorId, comment.parent?.authorId, ...userIdsMentioned].includes(list.ownerId)) return - - if (authorId !== list.ownerId) { + if (![authorId, comment.parent?.authorId, ...userIdsMentioned].includes(list.ownerId)) { createNotification({ type: 'LIST_COMMENT', actorId: authorId,