merge-requests/1/merge
Bsian 2019-11-02 00:19:09 +00:00
parent ad1b70888e
commit 9b85bea477
No known key found for this signature in database
GPG Key ID: 097FB9A291026091
1 changed files with 2 additions and 2 deletions

View File

@ -21,8 +21,8 @@ export default class CWG_Data extends Command {
if (!args[0]) return this.client.commands.get('help').run(message, ['cwg', this.name]); if (!args[0]) return this.client.commands.get('help').run(message, ['cwg', this.name]);
const dom = await this.client.db.Domain.find({ $or: [{ domain: args[0] }, { port: Number(args[0]) || '' }] }); 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.***`); 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: RichEmbed[] = [];
await dom.map(async (domain) => { const embeds = await dom.map(async (domain) => {
const cert = await fs.readFile(domain.x509.cert, { encoding: 'utf8' }); const cert = await fs.readFile(domain.x509.cert, { encoding: 'utf8' });
const embed = new RichEmbed(); const embed = new RichEmbed();
embed.setTitle('Domain Information'); embed.setTitle('Domain Information');