fix: various small fixes

This commit is contained in:
Devin Haska 2024-03-01 15:19:19 -08:00
parent 9811b42b7a
commit e2d26a8b9a
5 changed files with 4 additions and 79 deletions

View file

@ -12,7 +12,7 @@ dayjs.extend(relativeTime);
const fetchRecentMovies = async () => {
const url = `https://letterboxd.com/wonderfulfrog/rss/`;
const response = await EleventyFetch(url, { duration: "1m", type: "text" });
const response = await EleventyFetch(url, { duration: "1d", type: "text" });
const $ = cheerio.load(response, { xml: true });