Merge pull request #320 from Clevero/dev

change sendMessage to execute in "Getting Started"
This commit is contained in:
Ruben Bermudez 2017-10-31 11:06:10 +01:00 committed by GitHub
commit 10d0934439
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -186,7 +186,7 @@ Custom keyboards can be appended to messages using the `setReplyMarkup`. In this
try { try {
// Send the message // Send the message
sendMessage(message); execute(message);
} catch (TelegramApiException e) { } catch (TelegramApiException e) {
e.printStackTrace(); e.printStackTrace();
} }

View File

@ -88,7 +88,7 @@ Now that we have the library, we can start coding. There are few steps to follow
.setChatId(update.getMessage().getChatId()) .setChatId(update.getMessage().getChatId())
.setText(update.getMessage().getText()); .setText(update.getMessage().getText());
try { try {
sendMessage(message); // Call method to send the message execute(message); // Call method to send the message
} catch (TelegramApiException e) { } catch (TelegramApiException e) {
e.printStackTrace(); e.printStackTrace();
} }