chore: move updatePodcastRSS to after loop

This commit is contained in:
2025-06-04 22:25:32 +09:00
committed by Satsuki Akiba (aider)
parent 4a9f8e0264
commit b7f81e53f5

View File

@ -43,10 +43,10 @@ export async function batchProcess() {
try { try {
await processFeedUrl(url); await processFeedUrl(url);
} finally { } finally {
await updatePodcastRSS();
} }
} }
await updatePodcastRSS();
console.log("処理完了:", new Date().toISOString()); console.log("処理完了:", new Date().toISOString());
} }