Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/tree_summary.rb')
-rw-r--r--lib/gitlab/tree_summary.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/gitlab/tree_summary.rb b/lib/gitlab/tree_summary.rb
index 72df8b423df..ba3176ca6e7 100644
--- a/lib/gitlab/tree_summary.rb
+++ b/lib/gitlab/tree_summary.rb
@@ -6,7 +6,7 @@ module Gitlab
include ::MarkupHelper
CACHE_EXPIRE_IN = 1.hour
- MAX_OFFSET = 2**31
+ MAX_OFFSET = 2**31 - 1
attr_reader :commit, :project, :path, :offset, :limit, :user, :resolved_commits
@@ -35,6 +35,8 @@ module Gitlab
# - commit_path: URI of the commit in the web interface
# - commit_title_html: Rendered commit title
def summarize
+ return [] if offset < 0
+
commits_hsh = fetch_last_cached_commits_list
prerender_commit_full_titles!(commits_hsh.values)