fix: clear inbox processor interval on destroy

This commit is contained in:
Ricardo
2026-03-28 22:25:37 +01:00
parent d52869a50b
commit 7df2ef4437
+3
View File
@@ -1203,5 +1203,8 @@ export default class ActivityPubEndpoint {
destroy() {
this._stopGate?.();
if (this._inboxProcessorInterval) {
clearInterval(this._inboxProcessorInterval);
}
}
}