Skip to content

Commit

Permalink
Merge pull request #1 from bogdan-kovalev/fix-no-status
Browse files Browse the repository at this point in the history
Fix no status list
  • Loading branch information
bogdantimes authored Jun 25, 2021
2 parents 7d80544 + 25195b7 commit 99ab97e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,8 @@ const BotUtils = {
if (!processedStatus.statusIsFine) {
userStatusIssues.lackOfDetails.push(user);
}
} else {
userStatusIssues.noStatus.push(user);
}
});
return {
Expand Down Expand Up @@ -299,5 +301,5 @@ function printObject(object) {
}

function getHelpPage() {
return fmt(`[@${MainConfig.botName} Help Page](%s)`, MainConfig.helpPageUrl); // TODO: configure
return fmt(`[${MainConfig.botName} Help Page](%s)`, MainConfig.helpPageUrl);
}

0 comments on commit 99ab97e

Please sign in to comment.