diff --git a/script/import_scripts/getsatisfaction.rb b/script/import_scripts/getsatisfaction.rb index 7fd74dfedcb..de5ff13a62b 100644 --- a/script/import_scripts/getsatisfaction.rb +++ b/script/import_scripts/getsatisfaction.rb @@ -343,7 +343,8 @@ class ImportScripts::GetSatisfaction < ImportScripts::Base tcf = topic.first_post.custom_fields if tcf && tcf["import_id"] slug = @topic_slug[tcf["import_id"].to_i] - slug = slug.gsub("https://community.unbounce.com/", "") + # TODO: replace "http://community.example.com/" with the URL of your community + slug = slug.gsub("http://community.example.com/", "") Permalink.create(url: slug, topic_id: topic.id) end end