mirror of
https://github.com/tdlight-team/tdlight-telegram-bot-api.git
synced 2024-11-23 12:36:51 +01:00
Merge pull request #10 from tdlight-team/issue#9
Allow check_message for non-member channels
This commit is contained in:
commit
9b14e5c1b8
@ -3652,7 +3652,8 @@ bool Client::have_message_access(int64 chat_id) const {
|
||||
case ChatInfo::Type::Supergroup: {
|
||||
auto supergroup_info = get_supergroup_info(chat_info->supergroup_id);
|
||||
CHECK(supergroup_info != nullptr);
|
||||
return is_chat_member(supergroup_info->status);
|
||||
return !supergroup_info->is_supergroup || is_chat_member(supergroup_info->status);
|
||||
// return is_chat_member(supergroup_info->status);
|
||||
}
|
||||
case ChatInfo::Type::Unknown:
|
||||
default:
|
||||
|
Loading…
Reference in New Issue
Block a user