@@ -58,7 +58,7 @@ struct telegramMessage {
58
58
float longitude;
59
59
float latitude;
60
60
int update_id;
61
- int message_id; // added message id
61
+ int message_id;
62
62
63
63
int reply_to_message_id;
64
64
String reply_to_text;
@@ -85,17 +85,17 @@ class UniversalTelegramBot {
85
85
bool getMe ();
86
86
87
87
bool sendSimpleMessage (const String& chat_id, const String& text, const String& parse_mode);
88
- bool sendMessage (const String& chat_id, const String& text, const String& parse_mode = " " , int message_id = 0 ); // added message id
88
+ bool sendMessage (const String& chat_id, const String& text, const String& parse_mode = " " , int message_id = 0 );
89
89
bool sendMessageWithReplyKeyboard (const String& chat_id, const String& text,
90
90
const String& parse_mode, const String& keyboard,
91
91
bool resize = false , bool oneTime = false ,
92
92
bool selective = false );
93
93
bool sendMessageWithInlineKeyboard (const String& chat_id, const String& text,
94
- const String& parse_mode, const String& keyboard, int message_id = 0 ); // added message id
94
+ const String& parse_mode, const String& keyboard, int message_id = 0 );
95
95
96
96
bool sendChatAction (const String& chat_id, const String& text);
97
97
98
- bool sendPostMessage (JsonObject payload, bool edit = false ); // added message id option to send an editMessageText command
98
+ bool sendPostMessage (JsonObject payload, bool edit = false );
99
99
String sendPostPhoto (JsonObject payload);
100
100
String sendPhotoByBinary (const String& chat_id, const String& contentType, int fileSize,
101
101
MoreDataAvailable moreDataAvailableCallback,
0 commit comments