summaryrefslogtreecommitdiff
path: root/app/models/commit.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/commit.rb')
-rw-r--r--app/models/commit.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/app/models/commit.rb b/app/models/commit.rb
index daba5414afa..4d0c57b35fd 100644
--- a/app/models/commit.rb
+++ b/app/models/commit.rb
@@ -172,4 +172,10 @@ class Commit
lines.pop if lines.last == "-- " # end of diff
lines.join("\n")
end
+
+ def has_zero_stats?
+ stats.total.zero?
+ rescue
+ true
+ end
end