From 7df2ef4437fc25d1b05e753cfe17231b00e5610d Mon Sep 17 00:00:00 2001 From: Ricardo Date: Sat, 28 Mar 2026 22:25:37 +0100 Subject: [PATCH] fix: clear inbox processor interval on destroy --- index.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/index.js b/index.js index 239140f..2c2e249 100644 --- a/index.js +++ b/index.js @@ -1203,5 +1203,8 @@ export default class ActivityPubEndpoint { destroy() { this._stopGate?.(); + if (this._inboxProcessorInterval) { + clearInterval(this._inboxProcessorInterval); + } } }