From cd78e8ae6c1c5906966f34162f05b351a6f0ecc6 Mon Sep 17 00:00:00 2001 From: dholms Date: Wed, 13 Sep 2023 20:57:03 -0500 Subject: [PATCH] fix service entry --- 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 c2cabea4f73..a99b7ae980e 100644 --- a/services/pds/index.js +++ b/services/pds/index.js @@ -44,7 +44,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.ctx.shouldProxyModeration() || pds.ctx.cfg.sequencerLeaderEnabled + pds.cfg.bskyAppView.proxyModeration || pds.ctx.cfg.sequencerLeaderEnabled ? null : new PeriodicModerationActionReversal(pds.ctx) const periodicModerationActionReversalRunning =