-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
get/set bot short_description #59
base: master
Are you sure you want to change the base?
Conversation
bot's short description, which is shown on the bot's profile page and is sent together with the link when users share the bot
bot's short description, which is shown on the bot's profile page and is sent together with the link when users share the bot
bot's short description, which is shown on the bot's profile page and is sent together with the link when users share the bot
include/telebot-core.h
Outdated
@@ -1199,6 +1199,31 @@ telebot_error_e telebot_core_delete_message(telebot_core_handler_t *core_h, | |||
*/ | |||
void telebot_core_put_response(telebot_core_response_t *response); | |||
|
|||
//////////////////////////////////////////////////////////////////////////////////////// | |||
//ozlb | |||
//////////////////////////////////////////////////////////////////////////////////////// |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove custom comments
src/telebot-core.c
Outdated
#include <telebot-core.h> | ||
#include "telebot-private.h" | ||
#include "telebot-common.h" | ||
#include "telebot-core.h" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do NOT change this, to keep consistency.
} | ||
|
||
telebot_error_e telebot_get_my_short_description(telebot_handler_t handle, char **short_description) | ||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe this code should be in parser.
Please remove custom comments smartnode#59 (comment)
smartnode#59 (comment) Do NOT change this, to keep consistency.
Please remove custom comments
Update as requested |
bot's short description, which is shown on the bot's profile page and is sent together with the link when users share the bot