From 5c0b168041c7a7c8f844c1eda0d6362fb24c2268 Mon Sep 17 00:00:00 2001 From: Matthew R Date: Mon, 15 Jun 2020 21:49:36 -0400 Subject: [PATCH] remove platform from whois (keeps erroring someone fix) --- src/commands/whois.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/commands/whois.ts b/src/commands/whois.ts index 4ca1969..1aba0e5 100644 --- a/src/commands/whois.ts +++ b/src/commands/whois.ts @@ -47,6 +47,10 @@ export default class Whois extends Command { if (ackResolve?.emailAddress) { description += `${emotes.email} ${ackResolve.emailAddress}\n`; } + const pager = await this.client.db.PagerNumber.findOne({ individualAssignID: member.user.id }); + if (pager?.num) { + description += `📡 ${pager.num}\n`; + } if (ackResolve?.gitlab) { description += `${emotes.gitlab} ${ackResolve.gitlab}\n`; } @@ -66,8 +70,8 @@ export default class Whois extends Command { } } embed.addField('Status', member.status === 'dnd' ? 'Do Not Disturb' : this.capsFirstLetter(member.status) || 'Unknown', true); - const platform = member.bot && member.status !== 'offline' ? 'API/WebSocket' : Object.entries(message.member.clientStatus).filter((a) => a[1] !== 'offline').map((a) => this.capsFirstLetter(a[0])).join(', '); - if (platform) embed.addField('Platform', platform, true); + // const platform = member.bot && member.status !== 'offline' ? 'API/WebSocket' : Object.entries(message.member.clientStatus).filter((a) => a[1] !== 'offline').map((a) => this.capsFirstLetter(a[0])).join(', '); + // if (platform) embed.addField('Platform', platform, true); embed.addField('Joined At', `${moment(new Date(member.joinedAt)).format('dddd, MMMM Do YYYY, h:mm:ss A')} ET`, true); embed.addField('Created At', `${moment(new Date(member.user.createdAt)).format('dddd, MMMM Do YYYY, h:mm:ss A')} ET`, true); if (member.roles.length > 0) {