From b28d0445d23e4655e40752d12fe1b4e39d2a0b6b Mon Sep 17 00:00:00 2001 From: Lee Dohm Date: Wed, 17 May 2017 13:01:55 -0700 Subject: [PATCH] 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. --- src/main-process/atom-application.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main-process/atom-application.coffee b/src/main-process/atom-application.coffee index b2bfa560b..3a8ae12c0 100644 --- a/src/main-process/atom-application.coffee +++ b/src/main-process/atom-application.coffee @@ -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