Fix deserialization of ChatInviteLink::pending_join_request_count

This commit is contained in:
Flattergaster 2022-02-02 22:35:14 +03:00 committed by Alexander Lopatin
parent b1f10c91cc
commit 82eb96b405

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