add-file-to-drive - gmに渡す引数を正しくする

This commit is contained in:
otofune 2017-11-14 03:56:39 +09:00
parent e56f716a89
commit f6c63fbe14
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ export default (
return null;
}
// If the file is an image, calculate width and height to save in property
const g = gm(data, name);
const g = gm(fs.createReadStream(path), name);
const size = await prominence(g).size();
const properties = {
width: size.width,