@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 +7 -0
- package/lib/bots/followback.js +0 -2
- package/package.json +1 -1
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.
|
package/lib/bots/followback.js
CHANGED
|
@@ -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
|
|