From 5dd62048662ee616de1bbaf58bc134eff840aa45 Mon Sep 17 00:00:00 2001 From: Matthew R Date: Wed, 30 Oct 2019 00:06:46 -0400 Subject: [PATCH] add parse command --- src/commands/parse.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/commands/parse.ts b/src/commands/parse.ts index 37bffd4..1e8c1d7 100644 --- a/src/commands/parse.ts +++ b/src/commands/parse.ts @@ -34,7 +34,6 @@ export default class Parse extends Command { const embed = new RichEmbed(); embed.setTitle('Parse x509 Certificate'); embed.setDescription(`/home/${account.username}/Validation/${dir[0]} | ${account.username} <@${user.id}>`); - embed.setThumbnail(user.avatarURL); embed.setColor(3447003); embed.addField('Subject', `**Common Name:** ${subjectCommonName}\n**Email Address:** ${subjectEmailAddress}\n**Organization:** ${subjectOrganization}\n**Organizational Unit:** ${subjectOrganizationalUnit}\n**Country:** ${subjectCountry}`, true); embed.addField('Issuer', `**Common Name:** ${issuerCommonName}\n**Email Address:** ${issuerEmailAddress}\n**Organization:** ${issuerOrganization}\n**Organizational Unit:** ${issuerOrganizationalUnit}\n**Country:** ${issuerCountry}`, true);