Skip to content
Extraits de code Groupes Projets
Valider 60df916a rédigé par echarp's avatar echarp
Parcourir les fichiers

The geocoding address does not use anymore the country if this country is "top level".

This should better handle the "other" country, which OSM has troubles with...
parent 949d5dbd
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -86,7 +86,9 @@ class Event < ApplicationRecord
end
def full_address
[address, city, region, region.try(:region)].compact.join ', '
# Only uses the region if it is a sub-region and not a country
[address, city, region, region.try(:region) ? region.try(:region) : nil]
.compact.join ', '
end
def hashtags
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter