Skip to content

Commit

Permalink
Fix GitLab profile_url (html_url -> web_url)
Browse files Browse the repository at this point in the history
  • Loading branch information
bittner authored and pennersr committed Feb 26, 2017
1 parent 4039ab8 commit d57a974
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 d57a974

Please sign in to comment.