fix: #9074, fix svg uploads

v1.18.x
Barış Soner Uşaklı 4 years ago
parent ab98740821
commit 8f938eba19

@ -69,8 +69,9 @@ async function uploadAsImage(req, uploadedFile) {
await image.isFileTypeAllowed(uploadedFile.path);
let fileObj = await uploadsController.uploadFile(req.uid, uploadedFile);
if (meta.config.resizeImageWidth === 0 || meta.config.resizeImageWidthThreshold === 0) {
// sharp can't save svgs skip resize for them
const isSVG = uploadedFile.type === 'image/svg+xml';
if (isSVG || meta.config.resizeImageWidth === 0 || meta.config.resizeImageWidthThreshold === 0) {
return fileObj;
}

@ -86,7 +86,7 @@ image.size = async function (path) {
};
image.stripEXIF = async function (path) {
if (!meta.config.stripEXIFData || path.endsWith('.gif')) {
if (!meta.config.stripEXIFData || path.endsWith('.gif') || path.endsWith('.svg')) {
return;
}
try {

Loading…
Cancel
Save