2
0
Эх сурвалжийг харах

turn off rgba on thumbnails to avoid being unable to upload files which don't fithe .contain() box

Hoppy 7 жил өмнө
parent
commit
3420d914fc

+ 1 - 0
server/libs/uploads-agent.js

@@ -235,6 +235,7 @@ module.exports = {
     return jimp.read(sourcePath).then(img => {
       return img
         .contain(150, 150)
+        .rgba(false)
         .write(destPath)
     })
   },