Merge pull request #176 from Flattergaster/master

Fix deserialization of `ChatInviteLink::pending_join_request_count`
This commit is contained in:
Waffle Maybe 2022-02-02 23:04:57 +03:00 committed by GitHub
commit 6618aaf48d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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>,
}