Added Missing chatId

This commit is contained in:
Christopher Knapczyk 2023-07-29 13:30:23 -05:00
parent 2739a52e8f
commit 186026c945

View file

@ -36,6 +36,6 @@ public class CamelConfiguration extends RouteBuilder {
exchange.getIn().setBody(textMessage); exchange.getIn().setBody(textMessage);
} }
}) })
.to("telegram:bots?authorizationToken=bot5682031576:AAFr53phRURd130PyfJUoPdXQ7svy1wlcwo"); .to("telegram:bots?authorizationToken=bot5682031576:AAFr53phRURd130PyfJUoPdXQ7svy1wlcwo&chatId=" + chatId);
} }
} }