mirror of
https://github.com/lutris/lutris
synced 2024-11-02 10:19:50 +00:00
Merge pull request #637 from JoshStrobl/fix-register-url
Fix register URL. 404s without a slash.
This commit is contained in:
commit
af142fe96b
1 changed files with 1 additions and 1 deletions
|
@ -163,7 +163,7 @@ class LutrisWindow(Gtk.ApplicationWindow):
|
|||
lambda *x: self._open_browser('https://lutris.net/games/')
|
||||
),
|
||||
'register-account': Action(
|
||||
lambda *x: self._open_browser('https://lutris.net/user/register')
|
||||
lambda *x: self._open_browser('https://lutris.net/user/register/')
|
||||
),
|
||||
|
||||
'disconnect': Action(self.on_disconnect),
|
||||
|
|
Loading…
Reference in a new issue