master
Miikka Virtanen 2017-02-15 01:04:57 +02:00
parent 087fd85447
commit 1f235bb806
1 changed files with 4 additions and 4 deletions

View File

@ -126,16 +126,16 @@ Here's what their message contained:
const memberPromise = (mainGuild ? mainGuild.getRESTMember(msg.author.id) : Promise.resolve());
threadInitDonePromise = memberPromise
.catch(err => {
console.log(`Member ${msg.author.id} not found in main guild ${config.mainGuildId}`);
console.error(err);
})
.then(member => {
const mainGuildNickname = (member != null ? (member.nick || member.username) : 'UNKNOWN');
const accountAge = humanizeDuration(Date.now() - msg.author.createdAt, {largest: 2});
const infoHeader = `ACCOUNT AGE **${accountAge}**, ID **${msg.author.id}**, NICKNAME **${mainGuildNickname}**, LOGS **${userLogs.length}**\n-------------------------------`;
bot.createMessage(thread.channelId, infoHeader);
})
.catch(err => {
console.log(`Member ${msg.author.id} not found in main guild ${config.mainGuildId}`);
console.error(err);
});
// Ping mods of the new thread