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)
|
||||
songs = Song.search(needle)
|
||||
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