Database changes, new translations #32

Merged
profitroll merged 50 commits from dev into main 2023-11-05 15:37:22 +02: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()
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)

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()
if len(locations) == 0:
if len(locations) == 0 or locations is None:
await message.reply_text(
app._("search_nearby_empty", "messages", locale=user.locale)
)