@evanp/activitypub-bot 0.45.6 → 0.45.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -13,6 +13,13 @@ and this project adheres to
13
13
 
14
14
  ### Fixed
15
15
 
16
+ - Remove `onIdle` call that stalled FollowbackBot
17
+ since no workers had started yet.
18
+
19
+ ## [0.45.6] - 2026-04-27
20
+
21
+ ### Fixed
22
+
16
23
  - Patch up database problem where actors are
17
24
  stored in `pendingFollowing` instead of
18
25
  `Follow` activities.
@@ -27,8 +27,6 @@ export default class FollowBackBot extends Bot {
27
27
  async initialize (context) {
28
28
  await super.initialize(context)
29
29
  await this.#undoStalePendingFollowing()
30
- // Drain the queue so undos arrive before re-follows
31
- await this._context.onIdle()
32
30
  await this.#synchronizeFollowers()
33
31
  }
34
32
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evanp/activitypub-bot",
3
- "version": "0.45.6",
3
+ "version": "0.45.7",
4
4
  "description": "server-side ActivityPub bot framework",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",