Merge pull request #2611 from ayancey/jannyai-header-bug Fix incorrect JanitorAI/JannyAI import due to incorrect HTTP header

6cd40be5a35f43f4729f1fdb7510c2cff14cda2b

Cohee <18619528+Cohee1207@users.noreply.github.com>

Signed
1 files changed, +1 -1Showing whitespace changes
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 }