diff options
author | silverwind <me@silverwind.io> | 2017-06-01 03:10:11 +0200 |
---|---|---|
committer | Bo-Yi Wu <appleboy.tw@gmail.com> | 2017-05-31 20:10:11 -0500 |
commit | 31e8436a1c21735a03400a37cfc2bf8675983d02 (patch) | |
tree | df6853f7ee05ad244050a57501275dc0803818ed /conf | |
parent | a977ab7889e1cd6accaa401ad2a25f4f3c4c4dd6 (diff) | |
download | gitea-31e8436a1c21735a03400a37cfc2bf8675983d02.tar.gz gitea-31e8436a1c21735a03400a37cfc2bf8675983d02.zip |
Use a better default MAX_GIT_DIFF_LINE_CHARACTERS (#1845)
Tests indicate that line length alone does not make browsers slow, so
increase the default threshold after which diffs get surpressed for line
length from 500 to a more reasonable 5000 characters.
Fixes: https://github.com/go-gitea/gitea/issues/1826
Diffstat (limited to 'conf')
-rw-r--r-- | conf/app.ini | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/app.ini b/conf/app.ini index b3b306ccc3..3eb46465cf 100644 --- a/conf/app.ini +++ b/conf/app.ini @@ -460,7 +460,7 @@ DISABLE_DIFF_HIGHLIGHT = false ; Max number of lines allowed of a single file in diff view MAX_GIT_DIFF_LINES = 1000 ; Max number of characters of a line allowed in diff view -MAX_GIT_DIFF_LINE_CHARACTERS = 500 +MAX_GIT_DIFF_LINE_CHARACTERS = 5000 ; Max number of files shown in diff view MAX_GIT_DIFF_FILES = 100 ; Arguments for command 'git gc', e.g. "--aggressive --auto" |