diff --git a/lib/tasks/images.rake b/lib/tasks/images.rake index 861bd33d7..406c5621d 100644 --- a/lib/tasks/images.rake +++ b/lib/tasks/images.rake @@ -6,7 +6,7 @@ namespace :images do Post.where("image_width > ?", Danbooru.config.small_image_width).find_each do |post| if post.is_image? puts "resizing preview #{post.id}" - Danbooru.resize(post.file_path, post.preview_file_path, Danbooru.config.small_image_width, Danbooru.config.small_image_width, 80) + Danbooru.resize(post.file_path, post.preview_file_path, Danbooru.config.small_image_width, Danbooru.config.small_image_width, 90) end end end