From 1e1435bc72b02e67701a31587394c52db6fce161 Mon Sep 17 00:00:00 2001 From: Baltazar Gomez Date: Wed, 21 Feb 2018 18:29:10 -0700 Subject: [PATCH] fix #1027 Add startup-troubleshooting FAQ URL to daemon error --- src/main/index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/index.js b/src/main/index.js index 6aeebe453..51b29ccc8 100644 --- a/src/main/index.js +++ b/src/main/index.js @@ -67,7 +67,9 @@ app.on('ready', async () => { if (!isQuitting) { dialog.showErrorBox( 'Daemon has Exited', - 'The daemon may have encountered an unexpected error, or another daemon instance is already running.' + 'The daemon may have encountered an unexpected error, or another daemon instance is already running. \n' + + 'For more information please visit: \n' + + 'https://lbry.io/faq/startup-troubleshooting' ); app.quit(); }