mirror of
https://github.com/teloxide/teloxide.git
synced 2024-12-23 15:01:45 +01:00
Merge pull request #176 from Flattergaster/master
Fix deserialization of `ChatInviteLink::pending_join_request_count`
This commit is contained in:
commit
6618aaf48d
1 changed files with 1 additions and 1 deletions
|
@ -27,5 +27,5 @@ pub struct ChatInviteLink {
|
|||
/// after joining the chat via this invite link; 1-99999
|
||||
pub member_limit: Option<u32>,
|
||||
/// Number of pending join requests created using this link
|
||||
pub pending_join_request_count: u32,
|
||||
pub pending_join_request_count: Option<u32>,
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue