From 1e1435bc72b02e67701a31587394c52db6fce161 Mon Sep 17 00:00:00 2001 From: Baltazar Gomez Date: Wed, 21 Feb 2018 18:29:10 -0700 Subject: [PATCH 1/3] 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(); } From b31b226b2bd3a46f0365bf8a1f1e41dbfdaae5de Mon Sep 17 00:00:00 2001 From: Baltazar Gomez Date: Wed, 21 Feb 2018 20:13:55 -0700 Subject: [PATCH 2/3] add extra space Add extra space for more clarity. --- src/main/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/index.js b/src/main/index.js index 51b29ccc8..0ecd8d884 100644 --- a/src/main/index.js +++ b/src/main/index.js @@ -67,7 +67,7 @@ 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. \n' + + 'The daemon may have encountered an unexpected error, or another daemon instance is already running. \n\n' + 'For more information please visit: \n' + 'https://lbry.io/faq/startup-troubleshooting' ); From b61cd634ba51e62f52f0f3c89bdfe1cf94eaec20 Mon Sep 17 00:00:00 2001 From: Baltazar Gomez Date: Wed, 21 Feb 2018 20:28:10 -0700 Subject: [PATCH 3/3] update changelog.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e414ff7cb..749bcae81 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ Web UI version numbers should always match the corresponding version of LBRY App ## [Unreleased] ### Added - * + * Added startup-troubleshooting FAQ URL to daemon error ([#1039](https://github.com/lbryio/lbry-app/pull/1039)) * ### Changed