Fix check in wasGroupCallRingPreviouslyCanceled

This commit is contained in:
Fedor Indutny 2025-08-08 12:34:46 -07:00 committed by GitHub
commit c59f9d08de
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -8362,10 +8362,10 @@ function wasGroupCallRingPreviouslyCanceled(
bigint: true, bigint: true,
} }
) )
.get<number>({ .get<bigint>({
ringId, ringId,
ringsOlderThanThisAreIgnored: Date.now() - MAX_GROUP_CALL_RING_AGE, ringsOlderThanThisAreIgnored: Date.now() - MAX_GROUP_CALL_RING_AGE,
}) === 1 }) === 1n
); );
} }