Adding bold to the username when showing karma.

This commit is contained in:
sergiotarxz 2022-02-08 01:41:03 +01:00
parent 69cb88acb7
commit 2ddf3ca232
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ sub show_karma {
$telegram->send_message(
chat_id => $chat_id,
text =>
"@{[$user->first_name]} has @{[$user->karma =~ s/-/\\-/r]} points of karma\\."
"*@{[$user->first_name]}* has @{[$user->karma =~ s/-/\\-/r]} points of karma\\."
);
}