diff --git a/src/api/topics.js b/src/api/topics.js index 4f63301c57..72926ee525 100644 --- a/src/api/topics.js +++ b/src/api/topics.js @@ -85,9 +85,9 @@ topicsAPI.create = async function (caller, data) { socketHelpers.notifyNew(caller.uid, 'newTopic', { posts: [result.postData], topic: result.topicData }); if (!isScheduling) { - setImmediate(() => { + setTimeout(() => { activitypubApi.create.note(caller, { pid: result.postData.pid }); - }); + }, 5000); } return result.topicData;