Merge branch 'dev'
commit
30c10d8984
|
@ -10,7 +10,7 @@ export default class Profile extends Command {
|
|||
super(client);
|
||||
this.name = 'profile';
|
||||
this.description = 'Manages your profile on CR.';
|
||||
this.usage = 'profile <bio/github/gitlab> <new value>\n*Provide no value in subcommand to clear data.';
|
||||
this.usage = 'profile <bio/github/gitlab> <new value>\n*Provide no value in subcommand to clear data.*';
|
||||
this.permissions = 0;
|
||||
this.enabled = true;
|
||||
this.subcmds = [Profile_Bio, Profile_GitHub, Profile_Gitlab];
|
||||
|
|
|
@ -56,7 +56,7 @@ export default class Whois extends Command {
|
|||
if (ackResolve?.extension) {
|
||||
description += `☎️ ${ackResolve.extension}\n`;
|
||||
}
|
||||
const memberProfile = await this.client.db.Member.findOne({ userID: message.author.id }).lean().exec();
|
||||
const memberProfile = await this.client.db.Member.findOne({ userID: member.id }).lean().exec();
|
||||
if (memberProfile?.additional?.gitlab) {
|
||||
description += `${emotes.gitlab} ${memberProfile?.additional.gitlab}\n`;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue