2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-31 06:26:18 +00:00

Update API scheme on layer 158.

This commit is contained in:
John Preston
2023-03-31 13:06:13 +04:00
parent 7a9961b0e9
commit 4444844443
12 changed files with 75 additions and 10 deletions

View File

@@ -58,6 +58,7 @@ JoinedByLinkSlice ParseJoinedByLinkSlice(
result.users.push_back({
.user = owner.user(data.vuser_id()),
.date = data.vdate().v,
.viaFilterLink = data.is_via_community(),
});
});
}

View File

@@ -34,6 +34,7 @@ struct PeerInviteLinks {
struct JoinedByLinkUser {
not_null<UserData*> user;
TimeId date = 0;
bool viaFilterLink = false;
};
struct JoinedByLinkSlice {