Fix
This commit is contained in:
@ -20,7 +20,10 @@ import {
|
|||||||
openAI_ClassifyFeed,
|
openAI_ClassifyFeed,
|
||||||
openAI_GeneratePodcastContent,
|
openAI_GeneratePodcastContent,
|
||||||
} from "../services/llm.js";
|
} from "../services/llm.js";
|
||||||
import { updatePodcastRSS } from "../services/podcast.js";
|
import {
|
||||||
|
regenerateStartupFiles,
|
||||||
|
updatePodcastRSS,
|
||||||
|
} from "../services/podcast.js";
|
||||||
import { generateTTS, generateTTSWithoutQueue } from "../services/tts.js";
|
import { generateTTS, generateTTSWithoutQueue } from "../services/tts.js";
|
||||||
|
|
||||||
interface FeedItem {
|
interface FeedItem {
|
||||||
@ -280,7 +283,7 @@ async function processUnprocessedArticles(
|
|||||||
`📻 Updating podcast RSS after successful episode creation...`,
|
`📻 Updating podcast RSS after successful episode creation...`,
|
||||||
);
|
);
|
||||||
try {
|
try {
|
||||||
await updatePodcastRSS();
|
await regenerateStartupFiles();
|
||||||
console.log(`📻 RSS updated successfully for: ${article.title}`);
|
console.log(`📻 RSS updated successfully for: ${article.title}`);
|
||||||
} catch (rssError) {
|
} catch (rssError) {
|
||||||
console.error(
|
console.error(
|
||||||
|
Reference in New Issue
Block a user