Fix incorrect JanitorAI/JannyAI import due to incorrect HTTP header

ace6e9d18da1bdabb28e3a4cdab51e187e5f1fe2

Alex Yancey <me@alexyancey.com>

1 files changed, +1 -1Ignore whitespace
src/endpoints/content-manager.js+1 -1
@@ -434,7 +434,7 @@ async function downloadJannyCharacter(uuid) {
434 const imageResult = await fetch(downloadResult.downloadUrl);434 const imageResult = await fetch(downloadResult.downloadUrl);
435 const buffer = await imageResult.buffer();435 const buffer = await imageResult.buffer();
436 const fileName = `${sanitize(uuid)}.png`;436 const fileName = `${sanitize(uuid)}.png`;
437 const fileType = result.headers.get('content-type');437 const fileType = imageResult.headers.get('content-type');
438438
439 return { buffer, fileName, fileType };439 return { buffer, fileName, fileType };
440 }440 }