FIX: LocalJumpError in rake tasks (#14874)

`return` isn't allowed in a block context. A followup to #14865
This commit is contained in:
Jarek Radosz
2021-11-10 16:53:55 +01:00
committed by GitHub
parent 3791fbd919
commit b72688340f
4 changed files with 4 additions and 4 deletions

View File

@ -84,7 +84,7 @@ end
task "topics:update_fancy_titles" => :environment do
if !SiteSetting.title_fancy_entities?
puts "fancy topic titles are disabled"
return
next
end
DB.exec("UPDATE topics SET fancy_title = NULL")