1
0
Fork 0

Stop error

refactor/models
Bsian 2020-01-04 13:03:29 +00:00
parent a77f417e88
commit 78b926678a
No known key found for this signature in database
GPG Key ID: 097FB9A291026091
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ export default class Parseall extends Command {
else final.push(`${this.client.stores.emojis.success} **${a.username}** Expires in ${time}`); else final.push(`${this.client.stores.emojis.success} **${a.username}** Expires in ${time}`);
} catch (error) { } catch (error) {
if (error.message.includes('no such file or directory') || error.message.includes('File doesn\'t exist.')) final.push(`${this.client.stores.emojis.error} **${a.username}** Unable to locate certificate`); if (error.message.includes('no such file or directory') || error.message.includes('File doesn\'t exist.')) final.push(`${this.client.stores.emojis.error} **${a.username}** Unable to locate certificate`);
if (error.message.includes('panic: Certificate PEM Encode == nil')) final.push(`${this.client.stores.emojis.error} ** ${a.username}** Invalid certificate`); else if (error.message.includes('panic: Certificate PEM Encode == nil')) final.push(`${this.client.stores.emojis.error} ** ${a.username}** Invalid certificate`);
else throw error; else throw error;
} }
} }