From 8b7d350e0ae83d571fcdcb7108bfeb4ef77f8083 Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Wed, 14 Jan 2026 14:18:02 -0500 Subject: [PATCH] fix: #13892, logical flaw --- src/activitypub/out.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/activitypub/out.js b/src/activitypub/out.js index 4e11c243ef..701464ba8c 100644 --- a/src/activitypub/out.js +++ b/src/activitypub/out.js @@ -310,7 +310,7 @@ Out.announce.topic = enabledCheck(async (tid, uid) => { if (uid) { const exists = await user.exists(uid); - if (!exists || !utils.isNumber(cid)) { + if (!exists) { return; } } else {