1
0
Fork 0
refactor/models
Bsian 2019-12-30 17:00:48 +00:00
parent fe31d925a3
commit a14e4eb6cf
No known key found for this signature in database
GPG Key ID: 097FB9A291026091
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ export default class CWG_UpdateCert extends Command {
const writeTasks = [writeFile(cert, certAndPrivateKey[0], { encoding: 'utf8' }), writeFile(key, certAndPrivateKey[1], { encoding: 'utf8' })];
await Promise.all(writeTasks);
return message.channel.createMessage(`${this.client.stores.emojis.success} ***Updated certificate certificate for ${domain} on port ${port}***`);
return message.channel.createMessage(`${this.client.stores.emojis.success} ***Updated certificate for ${domain} on port ${port}***`);
} catch (error) {
return this.client.util.handleError(error, message, this);
}