diff --git a/src/scrapers/vixen.js b/src/scrapers/vixen.js index 7ee01bd0..76950cfd 100755 --- a/src/scrapers/vixen.js +++ b/src/scrapers/vixen.js @@ -23,7 +23,13 @@ function getAvatarFallbacks(avatar) { .sort((imageA, imageB) => imageB.height - imageA.height) .map((image) => [image.highdpi?.['3x'], image.highdpi?.triple, image.highdpi?.['2x'], image.highdpi?.double, image.src]) .flat() - .filter(Boolean); + .filter(Boolean) + .map((source) => ({ + src: source, + expectType: { + 'binary/octet-stream': 'image/jpeg', + }, + })); } function curateSources(sources, type = 'image/jpeg') {