From 03578725587fc738484e7d07fe073f90b0e09277 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Tue, 15 Jul 2014 06:25:53 -0700 Subject: [PATCH] Use repository URL in crashed message Now that the repository is public, issues there are better than emailing the help address. --- src/browser/atom-window.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/browser/atom-window.coffee b/src/browser/atom-window.coffee index 6b6dcb595..84c11f97e 100644 --- a/src/browser/atom-window.coffee +++ b/src/browser/atom-window.coffee @@ -105,7 +105,7 @@ class AtomWindow type: 'warning' buttons: ['Close Window', 'Reload', 'Keep It Open'] message: 'The editor has crashed' - detail: 'Please report this issue to atom@github.com' + detail: 'Please report this issue to https://github.com/atom/atom' switch chosen when 0 then @browserWindow.destroy() when 1 then @browserWindow.restart()