mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 22:17:30 -07:00
✌️
This commit is contained in:
parent
b4ab5aacef
commit
3062a9b1a9
1 changed files with 5 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue