due to travis error message: can't modify frozen string

This commit is contained in:
Victor Kavunenko 2014-10-06 12:45:11 +03:00
parent 9cf68c99b7
commit 1a52dba3af

View file

@ -41,7 +41,7 @@ class SearchObserver < ActiveRecord::Observer
end
def self.update_posts_index(post_id, cooked, title, category)
search_data = scrub_html_for_search(cooked) << " " << title.force_encoding('UTF-8')
search_data = scrub_html_for_search(cooked) << " " << title.dup.force_encoding('UTF-8')
search_data << " " << category if category
update_index('post', post_id, search_data)
end