Skip to content

Commit

Permalink
Fix venue after dropping country_select
Browse files Browse the repository at this point in the history
  • Loading branch information
cycomachead committed Feb 13, 2024
1 parent b5e95bf commit ef19e88
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions app/models/venue.rb
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,10 @@ def address
"#{street}, #{city}, #{country_name}"
end

# TODO-SNAPCON: (mb) iso_short_name seems to fail in tests only...this makes no sense.
# TODO-SNAPCON: (mb) Fix this to use the country shortname?
def country_name
return unless country

name = ISO3166::Country[country]
name.try(:iso_short_name) || name.try(:name)
I18nData.countries[country]
end

def location?
Expand Down

0 comments on commit ef19e88

Please sign in to comment.