This commit is contained in:
parent
2810fbd3a0
commit
df43de0487
|
@ -17,7 +17,11 @@ const migrate = doc => new Promise(async (res, rej) => {
|
||||||
.setFormat('ppm')
|
.setFormat('ppm')
|
||||||
.resize(1, 1)
|
.resize(1, 1)
|
||||||
.toBuffer(async (err, buffer) => {
|
.toBuffer(async (err, buffer) => {
|
||||||
if (err) rej(err);
|
if (err) {
|
||||||
|
console.error(err);
|
||||||
|
res(false);
|
||||||
|
return;
|
||||||
|
}
|
||||||
const r = buffer.readUInt8(buffer.length - 3);
|
const r = buffer.readUInt8(buffer.length - 3);
|
||||||
const g = buffer.readUInt8(buffer.length - 2);
|
const g = buffer.readUInt8(buffer.length - 2);
|
||||||
const b = buffer.readUInt8(buffer.length - 1);
|
const b = buffer.readUInt8(buffer.length - 1);
|
||||||
|
|
Loading…
Reference in New Issue