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-08-07 10:00:58 +0200
committerGitHub <noreply@github.com>2019-08-07 10:00:58 +0200
commita8958d07e222f2aa6867e8a5bf93cce4535fd3ce (patch)
tree28bf1bd8c3c608f697a2eef9822268f82ce55964 /app/models/featured_tag.rb
parentdd38c280a50a8feb70ad341c3561fe2f87c8cf3d (diff)
Fix featured tags not finding the right tag on save (#11504)
Regression from f371b32
Diffstat (limited to 'app/models/featured_tag.rb')
-rw-r--r--app/models/featured_tag.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/featured_tag.rb b/app/models/featured_tag.rb
index d06ae26a8..e02ae0705 100644
--- a/app/models/featured_tag.rb
+++ b/app/models/featured_tag.rb
@@ -23,7 +23,7 @@ class FeaturedTag < ApplicationRecord
   validate :validate_featured_tags_limit, on: :create
 
   def name=(str)
-    self.tag = Tag.find_or_initialize_by(name: str.strip.delete('#').mb_chars.downcase.to_s)
+    self.tag = Tag.find_or_create_by_names(str.strip)&.first
   end
 
   def increment(timestamp)