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
path: root/lib
diff options
context:
space:
mode:
authorJames Lopez <james@jameslopez.es>2018-08-03 14:07:50 +0300
committerJames Lopez <james@jameslopez.es>2018-08-03 14:07:50 +0300
commit107292dd3ab26489ab8fe613b9b3185aa6d66087 (patch)
tree723c6c12300077eb4a989525185d256149486d46 /lib
parentb901df220c9411eba4f541ac91b3e275a0dfa1df (diff)
Fix spec warnings and template helper
Diffstat (limited to 'lib')
-rw-r--r--lib/gitlab/template_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/template_helper.rb b/lib/gitlab/template_helper.rb
index 3918abaab45..f24a01e6cf5 100644
--- a/lib/gitlab/template_helper.rb
+++ b/lib/gitlab/template_helper.rb
@@ -3,7 +3,7 @@ module Gitlab
include Gitlab::Utils::StrongMemoize
def prepare_template_environment(file)
- return unless file&.path.present?
+ return unless file
if Gitlab::ImportExport.object_storage?
params[:import_export_upload] = ImportExportUpload.new(import_file: file)