Merge branch 'develop' of https://github.com/NodeBB/NodeBB into develop

This commit is contained in:
Barış Soner Uşaklı
2026-03-12 13:27:23 -04:00

View File

@@ -504,7 +504,7 @@ ActivityPub.buildRecipients = async function (object, options) {
// Remove local uris, public addresses, and any ids that aren't asserted actors
targets.forEach((address) => {
if (address.startsWith(nconf.get('url'))) {
if (utils.isNumber(address) || address.startsWith(nconf.get('url'))) {
targets.delete(address);
}
});