This commit is contained in:
lilyissillyyy
2025-09-06 18:12:19 -04:00
parent 422839e75c
commit f717fddeae
+1 -1
View File
@@ -18,7 +18,7 @@ module.exports = class CreateQRCodeCommand extends Command {
});
}
async run(msg, { text }) {
run(msg, { text }) {
const qr = this.createQRCode(text);
return msg.say({ files: [{ attachment: qr, name: 'qr-code.png' }] });
}