mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2026-01-07 15:34:52 +00:00
Don't propagate errors when fetching missing user details
This commit is contained in:
parent
85ee6c3785
commit
8d03850d03
1 changed files with 11 additions and 8 deletions
|
|
@ -24,7 +24,7 @@ import pyrogram
|
||||||
from pyrogram import raw
|
from pyrogram import raw
|
||||||
from pyrogram import types
|
from pyrogram import types
|
||||||
from pyrogram import utils
|
from pyrogram import utils
|
||||||
from pyrogram.errors import MessageIdsEmpty
|
from pyrogram.errors import MessageIdsEmpty, PeerIdInvalid
|
||||||
from pyrogram.parser import utils as parser_utils, Parser
|
from pyrogram.parser import utils as parser_utils, Parser
|
||||||
from ..object import Object
|
from ..object import Object
|
||||||
from ..update import Update
|
from ..update import Update
|
||||||
|
|
@ -435,12 +435,15 @@ class Message(Object, Update):
|
||||||
):
|
):
|
||||||
user_id = utils.get_raw_peer_id(message.from_id) or utils.get_raw_peer_id(message.peer_id)
|
user_id = utils.get_raw_peer_id(message.from_id) or utils.get_raw_peer_id(message.peer_id)
|
||||||
if user_id not in users:
|
if user_id not in users:
|
||||||
|
try:
|
||||||
r = (await client.send(
|
r = (await client.send(
|
||||||
raw.functions.users.GetUsers(
|
raw.functions.users.GetUsers(
|
||||||
id=[await client.resolve_peer(user_id)]
|
id=[await client.resolve_peer(user_id)]
|
||||||
)
|
)
|
||||||
))[0]
|
))[0]
|
||||||
|
except PeerIdInvalid:
|
||||||
|
pass
|
||||||
|
else:
|
||||||
users[r.id] = r
|
users[r.id] = r
|
||||||
|
|
||||||
if isinstance(message, raw.types.MessageEmpty):
|
if isinstance(message, raw.types.MessageEmpty):
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue