Skip to content
Snippets Groups Projects
Commit 72f50fcb authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Merge branch 'fix/avatar_relative_url' into 'master'

Fix Avatar and Relative URL

Fixes https://github.com/gitlabhq/gitlabhq/issues/7270

Instead of `URI::join` use a simple join with a slash. This is how all other places in GitLab join URLs and it doesn't muck with the relative path.

See merge request !144
parents 6a10e2e5 fe1553e9
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -471,7 +471,7 @@ class User < ActiveRecord::Base
 
def avatar_url(size = nil)
if avatar.present?
URI::join(gitlab_config.url, avatar.url).to_s
[gitlab_config.url, avatar.url].join("/")
else
GravatarService.new.execute(email, size)
end
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment