FIX: do not convert quote tags to markdown

This commit is contained in:
Arpit Jalan
2018-12-11 20:09:46 +05:30
parent c7c56af397
commit 71a5369fef
2 changed files with 2 additions and 2 deletions

View File

@@ -482,7 +482,7 @@ class BulkImport::Base
post[:raw] = (post[:raw] || "").scrub.strip.presence || "<Empty imported post>"
post[:raw] = process_raw post[:raw]
if @bbcode_to_md
post[:raw] = post[:raw].bbcode_to_md(false) rescue post[:raw]
post[:raw] = post[:raw].bbcode_to_md(false, {}, :disable, :quote) rescue post[:raw]
end
post[:like_count] ||= 0
post[:cooked] = pre_cook post[:raw]