forked from uniborg/uniborg
@Lonami scolded me
This commit is contained in:
parent
caead8435e
commit
9f5eee1420
|
@ -3,6 +3,7 @@
|
||||||
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
from telethon import events
|
from telethon import events
|
||||||
|
from telethon import utils
|
||||||
from telethon.tl import types
|
from telethon.tl import types
|
||||||
|
|
||||||
|
|
||||||
|
@ -16,14 +17,9 @@ async def _(event):
|
||||||
who = await borg.get_entity(
|
who = await borg.get_entity(
|
||||||
msg.forward.from_id or msg.forward.channel_id)
|
msg.forward.from_id or msg.forward.channel_id)
|
||||||
else:
|
else:
|
||||||
who = await borg.get_entity(msg.from_id)
|
who = await msg.get_sender()
|
||||||
|
|
||||||
if isinstance(who, types.User):
|
who_string = utils.get_display_name(who)
|
||||||
who_string = who.first_name
|
|
||||||
if who.last_name:
|
|
||||||
who_string += f" {who.last_name}"
|
|
||||||
else:
|
|
||||||
who_string = who.title
|
|
||||||
if isinstance(who, (types.User, types.Channel)) and who.username:
|
if isinstance(who, (types.User, types.Channel)) and who.username:
|
||||||
who_string += f" (@{who.username})"
|
who_string += f" (@{who.username})"
|
||||||
who_string += f", #{who.id}"
|
who_string += f", #{who.id}"
|
||||||
|
|
Loading…
Reference in New Issue