diff --git a/send_changelog.py b/send_changelog.py
index 133dbad974..9f95245257 100644
--- a/send_changelog.py
+++ b/send_changelog.py
@@ -15,7 +15,7 @@ commits_range = f'{github_event_before}...{github_sha}'
commits = list(repository.iter_commits(commits_range))
overview_link = f'https://github.com/{github_repo}/compare/{commits_range}'
-overview_link_tag = f'''{len(commits)} new {'commit' if len(commits) == 1 else 'commits'}'''
+overview_link_tag = f'''{len(commits)} new commit{'s' and len(commits) > 1}'''
message = f'''🔨 {overview_link_tag} to lawnchair:{branch}:\n'''
for commit in commits:
@@ -32,4 +32,5 @@ data = {
'disable_web_page_preview': 'true',
'disable_notification': 'true'
}
+
r = requests.post(f'https://api.telegram.org/bot{telegram_ci_bot_token}/sendMessage', data)