about summary refs log tree commit diff
path: root/app/models/featured_tag.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2019-03-05 03:46:24 +0100
committerGitHub <noreply@github.com>2019-03-05 03:46:24 +0100
commit5d3e7cee991d6d3ce989337a42ef6fd352348385 (patch)
tree00619064cf3b2148acebf7d363814302e425b2ba /app/models/featured_tag.rb
parent05dfd632c73b605232a77f27ff8d5b888efe5b00 (diff)
Fix featured tag form not failing on failed tag validations (#10167)
Diffstat (limited to 'app/models/featured_tag.rb')
-rw-r--r--app/models/featured_tag.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/app/models/featured_tag.rb b/app/models/featured_tag.rb
index b5a10ad2d..d06ae26a8 100644
--- a/app/models/featured_tag.rb
+++ b/app/models/featured_tag.rb
@@ -18,11 +18,12 @@ class FeaturedTag < ApplicationRecord
 
   delegate :name, to: :tag, allow_nil: true
 
-  validates :name, presence: true
+  validates_associated :tag, on: :create
+  validates :name, presence: true, on: :create
   validate :validate_featured_tags_limit, on: :create
 
   def name=(str)
-    self.tag = Tag.find_or_initialize_by(name: str.delete('#').mb_chars.downcase.to_s)
+    self.tag = Tag.find_or_initialize_by(name: str.strip.delete('#').mb_chars.downcase.to_s)
   end
 
   def increment(timestamp)