about summary refs log tree commit diff
path: root/app/models/site_upload.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/site_upload.rb')
-rw-r--r--app/models/site_upload.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/models/site_upload.rb b/app/models/site_upload.rb
index 8ffdc8313..641128adf 100644
--- a/app/models/site_upload.rb
+++ b/app/models/site_upload.rb
@@ -34,8 +34,8 @@ class SiteUpload < ApplicationRecord
 
     return if tempfile.nil?
 
-    geometry  = Paperclip::Geometry.from_file(tempfile)
-    self.meta = { width: geometry.width.to_i, height: geometry.height.to_i }
+    width, height = FastImage.size(tempfile.path)
+    self.meta = { width: width, height: height }
   end
 
   def clear_cache