This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
commit 2276b49a4520bc120db4ec56dbd510c68f882413 Author: itotx <58528262+it...@users.noreply.github.com> AuthorDate: Thu Dec 17 11:37:06 2020 +0500 change ? to & (#4761) change ? to & --- docs/components/modules/ROOT/pages/telegram-component.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/components/modules/ROOT/pages/telegram-component.adoc b/docs/components/modules/ROOT/pages/telegram-component.adoc index 72f5b21..9b0b2be 100644 --- a/docs/components/modules/ROOT/pages/telegram-component.adoc +++ b/docs/components/modules/ROOT/pages/telegram-component.adoc @@ -345,7 +345,7 @@ Once you get the chat ID, you can use the following sample route to push message --------------------------------------------------------- from("timer:tick") .setBody().constant("Hello") -to("telegram:bots?authorizationToken=123456789:insertYourAuthorizationTokenHere?chatId=123456") +to("telegram:bots?authorizationToken=123456789:insertYourAuthorizationTokenHere&chatId=123456") --------------------------------------------------------- Note that the corresponding URI parameter is simply `chatId`.