diff --git a/lib/postal/helpers.rb b/lib/postal/helpers.rb index d5bb347..e4d795b 100644 --- a/lib/postal/helpers.rb +++ b/lib/postal/helpers.rb @@ -3,7 +3,7 @@ module Postal def self.strip_name_from_address(address) return nil if address.nil? - address.gsub(/.*.*/, '').strip + address.gsub(/.*.*/, '').gsub(/\(.+?\)/, '').strip end end