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 <noreply@anthropic.com>
This commit is contained in:
Sven
2026-03-18 08:48:47 +01:00
parent 2bfaa27702
commit 059f36bf06

View File

@@ -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) {