PyroFork: set STORED_MSG_IDS_MAX_SIZE to 500

Signed-off-by: wulan17 <wulan17@nusantararom.org>
This commit is contained in:
wulan17 2023-07-04 11:24:24 +07:00
parent e355e73f14
commit fd5e63a224
No known key found for this signature in database
GPG key ID: 318CD6CD3A6AC0A5

View file

@ -27,7 +27,7 @@ from pyrogram.raw.core import Message, Long
from . import aes
from ..session.internals import MsgId
STORED_MSG_IDS_MAX_SIZE = 1000 * 2
STORED_MSG_IDS_MAX_SIZE = 500
def kdf(auth_key: bytes, msg_key: bytes, outgoing: bool) -> tuple: