Fix check in wasGroupCallRingPreviouslyCanceled

This commit is contained in:
Fedor Indutny
2025-08-08 12:34:46 -07:00
committed by GitHub
parent 63cac44853
commit c59f9d08de

View File

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