pull/29/head
Matthew 2020-09-10 01:43:58 -04:00
parent f3272709be
commit e39735dd74
No known key found for this signature in database
GPG Key ID: 210AF32ADE3B5C4B
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ export default class AddNote extends Command {
public async run(message: Message, args: string[]) {
try {
if (!args[0] || args.length < 1) return this.client.commands.get('help').run(message, [this.name]);
let { user } = this.client.util.resolveMember(args[0], this.mainGuild);
let user = this.client.util.resolveMember(args[0], this.mainGuild)?.user;
if (!user) user = await this.client.getRESTUser(args[0]);
if (!user) return this.error(message.channel, 'The member you specified could not be found.');