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) {
434434 const imageResult = await fetch(downloadResult.downloadUrl);
435435 const buffer = await imageResult.buffer();
436436 const fileName = `${sanitize(uuid)}.png`;
437437 const fileType = resultimageResult.headers.get('content-type');
438438
439439 return { buffer, fileName, fileType };
440440 }