mirror of
https://github.com/sanderfoobar/ircradio.git
synced 2024-11-25 13:29:28 +01:00
Report error for request search
This commit is contained in:
parent
b4fbe65002
commit
6302eb858f
@ -121,7 +121,10 @@ class Commands:
|
||||
send_message(target=target, message="usage: !request <id>")
|
||||
|
||||
needle = " ".join(args)
|
||||
try:
|
||||
songs = Song.search(needle)
|
||||
except Exception as ex:
|
||||
return await send_message(target, f"{ex}")
|
||||
if not songs:
|
||||
return await send_message(target, "Not found!")
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user