From e45b3c15c3d3cad3b9c32ee01d7c1eceed41eb76 Mon Sep 17 00:00:00 2001 From: Jeff Atwood Date: Mon, 2 Feb 2015 01:27:52 -0800 Subject: [PATCH] Revert "FIX: auto orientation code causing grey images to appear blackish" This reverts commit f680374820f8775d939e2a3b2ba033b6dee75cba. --- app/models/upload.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/upload.rb b/app/models/upload.rb index 099fe472627..81ab4e5fe81 100644 --- a/app/models/upload.rb +++ b/app/models/upload.rb @@ -146,7 +146,7 @@ class Upload < ActiveRecord::Base end def self.fix_image_orientation(path) - `convert #{path} -set colorspace RGB -auto-orient #{path}` + `convert #{path} -auto-orient #{path}` end end