Explorar o código

Friendlier email validation

Andrew Kane %!s(int64=7) %!d(string=hai) anos
pai
achega
a609ac60e6
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      app/models/blazer/check.rb

+ 1 - 1
app/models/blazer/check.rb

@@ -75,7 +75,7 @@ module Blazer
         # but we know what they mean, so let's fix it
         # also, some people like to use whitespace
         if emails.present?
-          self.emails = emails.gsub(/[;\s]/, ",").gsub(/,+/, ", ")
+          self.emails = emails.strip.gsub(/[;\s]/, ",").gsub(/,+/, ", ")
         end
       end