fixed location empty on goozali

pull/231/head
Yariv Menachem 2024-12-31 16:11:50 +02:00
parent 0bb64a1fc3
commit 3a2e47f7b6
1 changed files with 1 additions and 1 deletions

View File

@ -207,7 +207,7 @@ class Location(BaseModel):
else:
location_parts.append(country_name.title())
if (len(location_parts) == 0 and len(self.text) > 0):
if len(location_parts) == 0 and len(self.text) > 0:
return self.text
return ", ".join(location_parts)