about summary refs log tree commit diff
path: root/src/blog_node5_net.py
diff options
context:
space:
mode:
authoruser@node5.net <user@node5.net>2025-04-25 18:16:40 +0200
committeruser@node5.net <user@node5.net>2025-04-25 18:16:40 +0200
commitd82877b9424f2543bcb85b5f472005caf782dad1 (patch)
tree4873ec347136d2eb3915d4bffff1dc45ffb8e264 /src/blog_node5_net.py
parente308bc35093216bca344c027fdbcb4a384978e07 (diff)
Fix comment call telegram
Diffstat (limited to 'src/blog_node5_net.py')
-rw-r--r--src/blog_node5_net.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/blog_node5_net.py b/src/blog_node5_net.py
index 96fceea..43c1d9c 100644
--- a/src/blog_node5_net.py
+++ b/src/blog_node5_net.py
@@ -138,7 +138,7 @@ def post_comment():
                 if key == 'contact' and not args['show_contact']:
                     continue  # Skip contact, if not public for privacy
                 notification_message += f'\n{key[0].upper()}{key[1:]}: {args.get(key)}'
-    telegram_handler.send_message(notification_message)
+    telegram.send_message(notification_message)
 
     db.post_comment(**args)
     return flask.redirect(flask.request.referrer)