Quick correction, so that new event and orga can work properly again

This commit is contained in:
echarp 2017-10-08 14:28:18 +02:00
parent 1ef2e500f0
commit 9d4567430b
2 changed files with 2 additions and 2 deletions

View File

@ -94,7 +94,7 @@ class Event < ApplicationRecord
end
def full_address
[address, city, region, region.region].compact.join ', '
[address, city, region, region.try(:region)].compact.join ', '
end
def hashtags

View File

@ -92,7 +92,7 @@ class Orga < ApplicationRecord
end
def full_address
[address, city, region, region.region].compact.join ', '
[address, city, region, region.try(:region)].compact.join ', '
end
def to_s