mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 03:24:20 +00:00
🐛 Handle empty vcs
This commit is contained in:
parent
4982c5a8d4
commit
0f3d13fc8a
1 changed files with 3 additions and 0 deletions
|
@ -35,6 +35,9 @@ async def cv(*, _msg: engi.Message, _pda: engi.PDA, **__):
|
|||
message.append("")
|
||||
message.append("")
|
||||
|
||||
if len(message) == 0:
|
||||
message.append("☁️ \uE011Non c'è nessuno in chat vocale.\uE001")
|
||||
|
||||
await _msg.reply(text="\n".join(message))
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue