From 06b007205d529cd63ed04ad96fc2a10913bba211 Mon Sep 17 00:00:00 2001 From: Toks Date: Fri, 17 May 2013 18:14:25 -0400 Subject: [PATCH] fixes #1630 --- app/models/post.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/post.rb b/app/models/post.rb index 5640f634c..e41ff00e8 100644 --- a/app/models/post.rb +++ b/app/models/post.rb @@ -153,7 +153,7 @@ class Post < ActiveRecord::Base module ImageMethods def has_large? - image_width.present? && image_width > Danbooru.config.large_image_width + is_image? && image_width.present? && image_width > Danbooru.config.large_image_width end def has_large