Commit 7795a4b9 authored by dosire's avatar dosire

The hard limit should be a lot more liberal, 10x seems reasonable.

parent c183019c
...@@ -13,8 +13,8 @@ class Commit ...@@ -13,8 +13,8 @@ class Commit
DIFF_SAFE_FILES = 100 DIFF_SAFE_FILES = 100
DIFF_SAFE_LINES = 5000 DIFF_SAFE_LINES = 5000
# Commits above this size will not be rendered in HTML # Commits above this size will not be rendered in HTML
DIFF_HARD_LIMIT_FILES = 500 DIFF_HARD_LIMIT_FILES = 1000
DIFF_HARD_LIMIT_LINES = 10000 DIFF_HARD_LIMIT_LINES = 50000
class << self class << self
def decorate(commits) def decorate(commits)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment