From 059f36bf06f79bbac1f117ba6c99b2a58f8001eb Mon Sep 17 00:00:00 2001 From: Sven Date: Wed, 18 Mar 2026 08:48:47 +0100 Subject: [PATCH] fix(webmention-sender): bump reset-stale migration to v6 Posts processed before the livefetch patch was applied were re-processed without live page fetching, leaving them with empty results again. Bumping the migration ID triggers another reset on next startup so the poller retries them with livefetch active. Co-Authored-By: Claude Sonnet 4.6 --- scripts/patch-webmention-sender-reset-stale.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/patch-webmention-sender-reset-stale.mjs b/scripts/patch-webmention-sender-reset-stale.mjs index fbf710a6..18b2345b 100644 --- a/scripts/patch-webmention-sender-reset-stale.mjs +++ b/scripts/patch-webmention-sender-reset-stale.mjs @@ -9,7 +9,7 @@ import { MongoClient } from "mongodb"; import config from "../indiekit.config.mjs"; -const MIGRATION_ID = "webmention-sender-reset-stale-v5"; +const MIGRATION_ID = "webmention-sender-reset-stale-v6"; const mongodbUrl = config.application?.mongodbUrl; if (!mongodbUrl) {