Sync #6

Merged
profitroll merged 9 commits from dev into i18n 2023-08-30 15:43:30 +03:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit a9a92257dc - Show all commits

View File

@ -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() 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( await message.reply_text(
app._("location_name_empty", "messages", locale=user.locale).format( app._("location_name_empty", "messages", locale=user.locale).format(
cancel_notice=app._("cancel", "messages", locale=user.locale) cancel_notice=app._("cancel", "messages", locale=user.locale)

View File

@ -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() 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( await message.reply_text(
app._("search_nearby_empty", "messages", locale=user.locale) app._("search_nearby_empty", "messages", locale=user.locale)
) )