This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push:
new 25350489 change ? to &
25350489 is described below
commit 25350489aa13190b6eafd7ede2e8bddbd6513af1
Author: Claus Ibsen <[email protected]>
AuthorDate: Thu Dec 17 07:37:46 2020 +0100
change ? to &
---
components/camel-telegram/src/main/docs/telegram-component.adoc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/components/camel-telegram/src/main/docs/telegram-component.adoc
b/components/camel-telegram/src/main/docs/telegram-component.adoc
index 3d00ed3..7b6e66a 100644
--- a/components/camel-telegram/src/main/docs/telegram-component.adoc
+++ b/components/camel-telegram/src/main/docs/telegram-component.adoc
@@ -343,7 +343,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`.