Merge pull request #637 from JoshStrobl/fix-register-url

Fix register URL. 404s without a slash.
This commit is contained in:
Rob Loach 2017-09-02 09:56:21 -04:00 committed by GitHub
commit af142fe96b

View file

@ -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),