From 724324056827fb497facbb8fec433e68aac3a377 Mon Sep 17 00:00:00 2001 From: Pedro Lopez Date: Sun, 2 Feb 2020 13:52:25 -0400 Subject: [PATCH] fix !quoteinfo example --- example.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example.js b/example.js index c8f8181..3030083 100644 --- a/example.js +++ b/example.js @@ -113,7 +113,7 @@ client.on('message', async msg => { quotedMsg.reply(` ID: ${quotedMsg.id._serialized} Type: ${quotedMsg.type} - Author: ${(quotedMsg.author || quotedMsg.from)._serialized} + Author: ${quotedMsg.author || quotedMsg.from} Timestamp: ${quotedMsg.timestamp} Has Media? ${quotedMsg.hasMedia} `);