diff --git a/src/routes/content.js b/src/routes/content.js index d16bc11..d9dab01 100644 --- a/src/routes/content.js +++ b/src/routes/content.js @@ -11,7 +11,7 @@ import { importNotionCvs } from "../objects/cv.js"; import { importFiles } from "../objects/files.js"; import { importNotionProjects } from "../objects/projects.js"; import { importVideos } from "../objects/videos.js"; -import { handleBlurhashUpdate } from "../utils/imageCache"; +import { handleBlurHashUpdate } from "../utils/imageCache"; // Fetch or return cached content export async function getCachedContent(env, request) { @@ -44,7 +44,7 @@ export async function getCachedContent(env, request) { cachedContent.images = await importImages(env); cachedContent.files = await importFiles(env); cachedContent.videos = await importVideos(env); - await handleBlurhashUpdate(request, env); + await handleBlurHashUpdate(request, env); } if (noPages) { @@ -52,7 +52,7 @@ export async function getCachedContent(env, request) { cachedContent.images = await importImages(env); cachedContent.files = await importFiles(env); cachedContent.videos = await importVideos(env); - await handleBlurhashUpdate(request, env); + await handleBlurHashUpdate(request, env); } if (noCvs) { @@ -66,7 +66,7 @@ export async function getCachedContent(env, request) { cachedContent.images = await importImages(env); cachedContent.files = await importFiles(env); cachedContent.videos = await importVideos(env); - await handleBlurhashUpdate(request, env); + await handleBlurHashUpdate(request, env); } if (noProjects) {