diff --git a/handlers/commands/report.js b/handlers/commands/report.js
index 79ab3fb..2ce087d 100644
--- a/handlers/commands/report.js
+++ b/handlers/commands/report.js
@@ -17,12 +17,12 @@ const reportHandler = async ctx => {
}
const admins = await getAdmins();
const adminObjects = admins.map(user => ({
- first_name: '⭐️', // small hack to be able to use link function
+ first_name: '', // small hack to be able to use link function
id: user.id,
}));
- const stars = adminObjects.map(link).join('');
- const s = `📋 ${link(ctx.from)} reported the message to admins: ` +
- `${stars}`;
+ const adminsMention = adminObjects.map(link).join('');
+ const s = `❗️${link(ctx.from)} reported the message to the admins.` +
+ `${adminsMention}`;
return ctx.replyWithHTML(s, {
reply_to_message_id: msg.reply_to_message.message_id
});