diff options
author | Phil Hughes <me@iamphill.com> | 2017-12-11 16:22:22 +0000 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2017-12-11 16:22:22 +0000 |
commit | dec420feb39975fefd15460f372369071c346d53 (patch) | |
tree | d6826474b1038efed62917aa87f9200424019ff7 /lib/extracts_path.rb | |
parent | f38a6d6ee610e7301be35740d1cc0e3a1cbd42d0 (diff) | |
download | gitlab-ce-dec420feb39975fefd15460f372369071c346d53.tar.gz |
fixed project homepage not having correct variable
Diffstat (limited to 'lib/extracts_path.rb')
-rw-r--r-- | lib/extracts_path.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/extracts_path.rb b/lib/extracts_path.rb index 721ed97bb6b..bab46281922 100644 --- a/lib/extracts_path.rb +++ b/lib/extracts_path.rb @@ -128,6 +128,9 @@ module ExtractsPath @hex_path = Digest::SHA1.hexdigest(@path) @logs_path = logs_file_project_ref_path(@project, @ref, @path) + blob_ids = tree.blobs.map(&:id) + @lfs_blobs = Gitlab::Git::Blob.batch_lfs_pointers(@repo, blob_ids) + rescue RuntimeError, NoMethodError, InvalidPathError render_404 end |