diff --git a/app/models/event.rb b/app/models/event.rb index f59f1a40..0243e23c 100644 --- a/app/models/event.rb +++ b/app/models/event.rb @@ -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