FIX: Avoid bang methods in Disqus importer.

This commit is contained in:
Guo Xiang Tan 2015-12-07 20:33:14 +08:00
parent 578f606a1a
commit 0866c160ef
1 changed files with 1 additions and 2 deletions

View File

@ -151,8 +151,7 @@ class DisqusSAX < Nokogiri::XML::SAX::Document
@threads.delete(id)
else
# Normalize titles
t[:title].gsub!(@strip, '') if @strip.present?
t[:title].strip!
t[:title] = [:title].gsub(@strip, '').strip if @strip.present?
end
end