remove redudant await and remove logging
parent
2b2b4f6830
commit
7e8256a474
|
@ -43,8 +43,6 @@ export default class Util {
|
|||
*/
|
||||
public resolveCommand(command: string, args?: string[], message?: Message): Promise<{cmd: Command, args: string[] }> {
|
||||
try {
|
||||
this.client.signale.info(command);
|
||||
this.client.signale.info(args);
|
||||
let resolvedCommand: Command;
|
||||
|
||||
if (this.client.commands.has(command)) resolvedCommand = this.client.commands.get(command);
|
||||
|
@ -145,7 +143,7 @@ export default class Util {
|
|||
}
|
||||
|
||||
|
||||
public async createHash(password: string) {
|
||||
public async createHash(password: string): Promise<string> {
|
||||
const hashed = await this.exec(`mkpasswd -m sha-512 "${password}"`);
|
||||
return hashed;
|
||||
}
|
||||
|
@ -225,7 +223,7 @@ export default class Util {
|
|||
const expiration = { date, processed };
|
||||
|
||||
logInput.expiration = expiration;
|
||||
const log = await new this.client.db.Moderation(logInput);
|
||||
const log = new this.client.db.Moderation(logInput);
|
||||
await log.save();
|
||||
|
||||
let embedTitle: string;
|
||||
|
|
Loading…
Reference in New Issue