FIX: Mbox import script tried to modify frozen string (#27768)
This commit is contained in:
parent
897518e874
commit
4e7e6c339f
|
@ -145,7 +145,7 @@ module ImportScripts::Mbox
|
||||||
end
|
end
|
||||||
|
|
||||||
def map_first_post(row)
|
def map_first_post(row)
|
||||||
subject = row["subject"]
|
subject = row["subject"].dup
|
||||||
tags = remove_tags!(subject)
|
tags = remove_tags!(subject)
|
||||||
|
|
||||||
mapped = map_post(row)
|
mapped = map_post(row)
|
||||||
|
|
Loading…
Reference in New Issue