2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-09-05 00:55:12 +00:00

Moved type of call id to alias.

This commit is contained in:
23rd
2021-10-25 00:33:53 +03:00
committed by John Preston
parent 08939ac51d
commit 70e9b4a332
11 changed files with 32 additions and 31 deletions

View File

@@ -53,8 +53,8 @@ bool GroupCallParticipant::screenPaused() const {
GroupCall::GroupCall(
not_null<PeerData*> peer,
uint64 id,
uint64 accessHash,
CallId id,
CallId accessHash,
TimeId scheduleDate)
: _id(id)
, _accessHash(accessHash)
@@ -70,7 +70,7 @@ GroupCall::~GroupCall() {
api().request(_reloadRequestId).cancel();
}
uint64 GroupCall::id() const {
CallId GroupCall::id() const {
return _id;
}