Fixed stupid mistake of using an empty list
This commit is contained in:
parent
1248efd20f
commit
0006703daf
@ -46,7 +46,7 @@ async def search_name(app: PyroClient, message: Message) -> Union[Location, None
|
||||
|
||||
query = {"$text": {"$search": answer.text}}
|
||||
|
||||
locations = (await col_locations.find(query).limit(6).to_list()).reverse()
|
||||
locations = await col_locations.find(query).limit(6).to_list()
|
||||
|
||||
if len(locations) == 0:
|
||||
await message.reply_text(
|
||||
@ -61,6 +61,8 @@ async def search_name(app: PyroClient, message: Message) -> Union[Location, None
|
||||
)
|
||||
continue
|
||||
|
||||
locations = locations.reverse()
|
||||
|
||||
keyboard = ReplyKeyboard(resize_keyboard=True, row_width=2)
|
||||
keyboard.add(*[ReplyButton(db_record["name"]) for db_record in locations])
|
||||
|
||||
|
@ -24,7 +24,7 @@ async def search_nearby(app: PyroClient, message: Message) -> Union[Location, No
|
||||
}
|
||||
}
|
||||
|
||||
locations = (await col_locations.find(query).limit(6).to_list()).reverse()
|
||||
locations = await col_locations.find(query).limit(6).to_list()
|
||||
|
||||
if len(locations) == 0:
|
||||
await message.reply_text(
|
||||
@ -32,6 +32,8 @@ async def search_nearby(app: PyroClient, message: Message) -> Union[Location, No
|
||||
)
|
||||
return await search_name(app, message)
|
||||
|
||||
locations = locations.reverse()
|
||||
|
||||
keyboard = ReplyKeyboard(resize_keyboard=True, row_width=2)
|
||||
keyboard.add(*[ReplyButton(db_record["name"]) for db_record in locations])
|
||||
|
||||
|
Reference in New Issue
Block a user