diff options
author | Tomas Srna <tomas@srna.sk> | 2014-10-29 10:52:54 +0100 |
---|---|---|
committer | Tomas Srna <tomas@srna.sk> | 2014-10-29 10:52:54 +0100 |
commit | 733012cb65e43e41aa3b553c7fd02079cbf9eff4 (patch) | |
tree | e0067aaa72cdc6634cec60aa96376ed3c2515515 /app/uploaders | |
parent | 1072c95180aa31b999088fec4d14ce6765041a15 (diff) | |
download | gitlab-ce-733012cb65e43e41aa3b553c7fd02079cbf9eff4.tar.gz |
Removed + '' +
Diffstat (limited to 'app/uploaders')
-rw-r--r-- | app/uploaders/attachment_uploader.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/uploaders/attachment_uploader.rb b/app/uploaders/attachment_uploader.rb index 24fc294909e..29a55b36ca5 100644 --- a/app/uploaders/attachment_uploader.rb +++ b/app/uploaders/attachment_uploader.rb @@ -27,7 +27,7 @@ class AttachmentUploader < CarrierWave::Uploader::Base end def url - Gitlab.config.gitlab.relative_url_root + '' + super unless super.nil? + Gitlab.config.gitlab.relative_url_root + super unless super.nil? end def file_storage? |