From 71ee729f846e39555111abd809be3b0dcd9aec2f Mon Sep 17 00:00:00 2001 From: Alan Date: Thu, 1 Sep 2016 14:14:17 -0700 Subject: [PATCH] Change Help->Documentation url from https to http (Fix #12583) The flight manual page does not have a secure connection, so navigating to the https link would result in a SSL_ERROR_BAD_CERT_DOMAIN error. It might be better to add a secure connection to the server rather than pulling this commit. --- 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 541f70990..0eebf043f 100644 --- a/src/main-process/atom-application.coffee +++ b/src/main-process/atom-application.coffee @@ -200,7 +200,7 @@ class AtomApplication atomWindow ?= @focusedWindow() atomWindow?.browserWindow.inspectElement(x, y) - @on 'application:open-documentation', -> shell.openExternal('https://flight-manual.atom.io/') + @on 'application:open-documentation', -> shell.openExternal('http://flight-manual.atom.io/') @on 'application:open-discussions', -> shell.openExternal('https://discuss.atom.io') @on 'application:open-faq', -> shell.openExternal('https://atom.io/faq') @on 'application:open-terms-of-use', -> shell.openExternal('https://atom.io/terms')