diff options
author | Christian Hesse <mail@eworm.de> | 2023-05-15 21:43:18 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2023-05-15 21:43:18 +0200 |
commit | 4254b01a32a965a1850c6dc5c669dca34a64a297 (patch) | |
tree | 93e28bd5eddd57bfa63c210e045b8a909ffe2d68 /mod | |
parent | 9069f71ee6168a651fd42f90b7aea309fefa260b (diff) |
mod/notification-telegram: fix copy-and-paste error
Diffstat (limited to 'mod')
-rw-r--r-- | mod/notification-telegram.rsc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/notification-telegram.rsc b/mod/notification-telegram.rsc index e59dbb2..0ab1aa0 100644 --- a/mod/notification-telegram.rsc +++ b/mod/notification-telegram.rsc @@ -37,7 +37,7 @@ ("https://api.telegram.org/bot" . ($Message->"tokenid") . "/sendMessage") \ http-data=("chat_id=" . ($Message->"chatid") . \ "&disable_notification=" . ($Message->"silent") . \ - "&reply_to_message_id=" . ($Notification->"replyto") . \ + "&reply_to_message_id=" . ($Message->"replyto") . \ "&disable_web_page_preview=true&parse_mode=" . ($Message->"parsemode") . \ "&text=" . ($Message->"text")) as-value; :set ($TelegramQueue->$Id); |