Skip to content

Commit

Permalink
Fix profile_url
Browse files Browse the repository at this point in the history
  • Loading branch information
saily committed Dec 14, 2015
1 parent 902e332 commit 0d6a7d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion allauth/socialaccount/providers/gitlab/provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class GitLabAccount(ProviderAccount):
def get_profile_url(self):
return self.account.extra_data.get('html_url')
return self.account.extra_data.get('web_url')

def get_avatar_url(self):
return self.account.extra_data.get('avatar_url')
Expand Down

0 comments on commit 0d6a7d0

Please sign in to comment.