Skip to content

Commit

Permalink
fix entry point
Browse files Browse the repository at this point in the history
  • Loading branch information
dholms committed Sep 29, 2023
1 parent c7285a8 commit 7506d5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/pds/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const main = async () => {
// If the PDS is configured to proxy moderation, this will be running on appview instead of pds.
// Also don't run this on the sequencer leader, which may not be configured regarding moderation proxying at all.
const periodicModerationActionReversal =
pds.cfg.bskyAppView.proxyModeration || pds.ctx.cfg.sequencerLeaderEnabled
pds.ctx.cfg.bskyAppView.proxyModeration || pds.ctx.cfg.sequencerLeaderEnabled
? null
: new PeriodicModerationActionReversal(pds.ctx)
const periodicModerationActionReversalRunning =
Expand Down

0 comments on commit 7506d5d

Please sign in to comment.