This commit is contained in:
syuilo 2017-12-11 13:52:06 +09:00
parent 2810fbd3a0
commit df43de0487

View file

@ -17,7 +17,11 @@ const migrate = doc => new Promise(async (res, rej) => {
.setFormat('ppm')
.resize(1, 1)
.toBuffer(async (err, buffer) => {
if (err) rej(err);
if (err) {
console.error(err);
res(false);
return;
}
const r = buffer.readUInt8(buffer.length - 3);
const g = buffer.readUInt8(buffer.length - 2);
const b = buffer.readUInt8(buffer.length - 1);