Fix search issues menu link

The previous link would give a 404 when the user was not logged in to
GitHub. This link works whether logged in or not.
This commit is contained in:
Lee Dohm
2017-05-17 13:01:55 -07:00
parent 8ed16cea43
commit b28d0445d2

View File

@@ -238,7 +238,7 @@ class AtomApplication
@on 'application:open-faq', -> shell.openExternal('https://atom.io/faq')
@on 'application:open-terms-of-use', -> shell.openExternal('https://atom.io/terms')
@on 'application:report-issue', -> shell.openExternal('https://github.com/atom/atom/blob/master/CONTRIBUTING.md#submitting-issues')
@on 'application:search-issues', -> shell.openExternal('https://github.com/issues?q=+is%3Aissue+user%3Aatom')
@on 'application:search-issues', -> shell.openExternal('https://github.com/search?q=+is%3Aissue+user%3Aatom')
@on 'application:install-update', =>
@quitting = true