Skip to content

Commit

Permalink
Fix user aliases link
Browse files Browse the repository at this point in the history
Signed-off-by: Igor Kotrasinski <[email protected]>
  • Loading branch information
Wesmania committed Mar 13, 2017
1 parent 9539e6b commit 7c4398b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/chat/chatter.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ def set_color(self):
self.setTextColor(QtGui.QColor(chat.get_color("default")))

def viewAliases(self):
QtGui.QDesktopServices.openUrl(QUrl("{}?name={}".format(Settings.get("NAME_CHANGE_URL"), self.name)))
QtGui.QDesktopServices.openUrl(QUrl("{}?name={}".format(Settings.get("USER_ALIASES_URL"), self.name)))

def selectAvatar(self):
avatarSelection = avatarWidget(self.lobby.client, self.name, personal=True)
Expand Down
1 change: 1 addition & 0 deletions src/config/production.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,5 @@
'STEAMLINK_URL': 'https://faforever.com/account/link',
'PASSWORD_RECOVERY_URL': 'https://faforever.com/account/password/reset',
'NAME_CHANGE_URL': 'https://faforever.com/account/username/change',
'USER_ALIASES_URL': 'http://app.faforever.com/faf/userName.php',
}

0 comments on commit 7c4398b

Please sign in to comment.