Handle no results

This commit is contained in:
blank X 2020-12-25 08:43:52 +07:00
parent 018846b0c4
commit 207f3ee8ab
1 changed files with 4 additions and 0 deletions

View File

@ -121,9 +121,13 @@ async def saucenao(client, message):
text += atext
elif low_similarity:
break
if not text:
text = caption = 'No results found'
try:
if to_thumbnail and not to_image:
await download_file(to_thumbnail, filename)
elif not to_image:
raise Exception()
ext = await get_file_ext(filename)
os.rename(filename, filename + ext)
await message.reply_photo(filename + ext, caption=caption)