FIX: Mbox import script tried to modify frozen string (#27768)

This commit is contained in:
Michael Sandler 2024-07-11 23:22:13 +02:00 committed by GitHub
parent 897518e874
commit 4e7e6c339f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ module ImportScripts::Mbox
end
def map_first_post(row)
subject = row["subject"]
subject = row["subject"].dup
tags = remove_tags!(subject)
mapped = map_post(row)