This commit is contained in:
Dragon Fire
2020-06-29 13:25:28 -04:00
parent ffd9be4b9a
commit 87c67b202f
+1 -1
View File
@@ -42,7 +42,7 @@ module.exports = class MagikCommand extends Command {
toBuffer(magik) {
return new Promise((res, rej) => {
magik.toBuffer('PNG', (err, buffer) => {
magik.toBuffer((err, buffer) => {
if (err) return rej(err);
return res(buffer);
});