1
0
Fork 0
refactor/models
Bsian 2019-11-02 00:55:46 +00:00
parent 16cfd9062e
commit 1a59bdcc77
No known key found for this signature in database
GPG Key ID: 097FB9A291026091
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ export default class CWG_Data extends Command {
const dom = await this.client.db.Domain.find({ $or: [{ domain: args[0] }, { port: Number(args[0]) || '' }] });
if (!dom.length) return message.channel.createMessage(`***${this.client.stores.emojis.error} The domain or port you provided could not be found.***`);
// const embeds: RichEmbed[] = [];
const embeds = dom.map(async (domain) => {
const embeds = dom.map((domain) => {
const cert = fs.readFileSync(domain.x509.cert, { encoding: 'utf8' });
const embed = new RichEmbed();
embed.setTitle('Domain Information');