None check added
This commit is contained in:
parent
0006703daf
commit
a9a92257dc
@ -48,7 +48,7 @@ async def search_name(app: PyroClient, message: Message) -> Union[Location, None
|
||||
|
||||
locations = await col_locations.find(query).limit(6).to_list()
|
||||
|
||||
if len(locations) == 0:
|
||||
if len(locations) == 0 or locations is None:
|
||||
await message.reply_text(
|
||||
app._("location_name_empty", "messages", locale=user.locale).format(
|
||||
cancel_notice=app._("cancel", "messages", locale=user.locale)
|
||||
|
@ -26,7 +26,7 @@ async def search_nearby(app: PyroClient, message: Message) -> Union[Location, No
|
||||
|
||||
locations = await col_locations.find(query).limit(6).to_list()
|
||||
|
||||
if len(locations) == 0:
|
||||
if len(locations) == 0 or locations is None:
|
||||
await message.reply_text(
|
||||
app._("search_nearby_empty", "messages", locale=user.locale)
|
||||
)
|
||||
|
Reference in New Issue
Block a user