merge pull request #36 from levina-lab/beta-test

initial commit
This commit is contained in:
levina 2021-11-05 15:41:09 +07:00 committed by GitHub
commit b033f7cc2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 0 deletions

View File

@ -62,6 +62,8 @@ async def play(c: Client, m: Message):
] ]
] ]
) )
if m.sender_chat:
return await m.reply_text("you're an __Anonymous Admin__ !\n\n» revert back to user account from admin rights.")
try: try:
aing = await c.get_me() aing = await c.get_me()
except Exception as e: except Exception as e:
@ -267,6 +269,8 @@ async def stream(c: Client, m: Message):
] ]
] ]
) )
if m.sender_chat:
return await m.reply_text("you're an __Anonymous Admin__ !\n\n» revert back to user account from admin rights.")
try: try:
aing = await c.get_me() aing = await c.get_me()
except Exception as e: except Exception as e:

View File

@ -68,6 +68,8 @@ async def vplay(c: Client, m: Message):
] ]
] ]
) )
if m.sender_chat:
return await m.reply_text("you're an __Anonymous Admin__ !\n\n» revert back to user account from admin rights.")
try: try:
aing = await c.get_me() aing = await c.get_me()
except Exception as e: except Exception as e:
@ -297,6 +299,8 @@ async def vstream(c: Client, m: Message):
] ]
] ]
) )
if m.sender_chat:
return await m.reply_text("you're an __Anonymous Admin__ !\n\n» revert back to user account from admin rights.")
try: try:
aing = await c.get_me() aing = await c.get_me()
except Exception as e: except Exception as e: