diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a3fe94cf..ac079428c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ - Doctor: check config/state permissions and offer to tighten them. — thanks @steipete - Doctor/Daemon: audit supervisor configs, add --repair/--force flows, surface service config audits in daemon status, and document user vs system services. — thanks @steipete - Daemon: align generated systemd unit with docs for network-online + restart delay. (#479) — thanks @azade-c +- Doctor: run legacy state migrations in non-interactive mode without prompts. - Cron: parse Telegram topic targets for isolated delivery. (#478) — thanks @nachoiacovino - Outbound: default Telegram account selection for config-only tokens; remove heartbeat-specific accountId handling. (follow-up #516) — thanks @YuriNachos - Cron: allow Telegram delivery targets with topic/thread IDs (e.g. `-100…:topic:123`). (#474) — thanks @mitschabaude-bot diff --git a/src/commands/doctor-gateway-services.ts b/src/commands/doctor-gateway-services.ts index 9087c6a19..0931e9445 100644 --- a/src/commands/doctor-gateway-services.ts +++ b/src/commands/doctor-gateway-services.ts @@ -170,9 +170,6 @@ export async function maybeRepairGatewayServiceConfig( const aggressiveIssues = audit.issues.filter( (issue) => issue.level === "aggressive", ); - const _recommendedIssues = audit.issues.filter( - (issue) => issue.level !== "aggressive", - ); const needsAggressive = aggressiveIssues.length > 0; if (needsAggressive && !prompter.shouldForce) {