From 7506d5dcdfcbc8fe9cf47b8ae83d0a51795acbab Mon Sep 17 00:00:00 2001 From: dholms Date: Thu, 28 Sep 2023 19:58:40 -0500 Subject: [PATCH] fix entry point --- services/pds/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/pds/index.js b/services/pds/index.js index 4c7477f6f14..d8d7126676a 100644 --- a/services/pds/index.js +++ b/services/pds/index.js @@ -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 =