From a967495c23df16f2d2d49770dcdef425a0fa4e40 Mon Sep 17 00:00:00 2001 From: Scott Gartner Date: Tue, 10 Jul 2018 18:46:31 -0600 Subject: [PATCH 1/3] Changed the error message given when the daemon and LBRY app are on different versions of the API to make it more clear for the user what their next steps are. --- src/renderer/modal/modalIncompatibleDaemon/view.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/renderer/modal/modalIncompatibleDaemon/view.jsx b/src/renderer/modal/modalIncompatibleDaemon/view.jsx index e5a2b6309..0d663c87f 100644 --- a/src/renderer/modal/modalIncompatibleDaemon/view.jsx +++ b/src/renderer/modal/modalIncompatibleDaemon/view.jsx @@ -17,13 +17,13 @@ class ModalIncompatibleDaemon extends React.PureComponent { isOpen contentLabel={__('Incompatible daemon running')} type="confirm" - confirmButtonLabel={__('Quit daemon')} + confirmButtonLabel={__('Close LBRY and daemon')} abortButtonLabel={__('Do nothing')} onConfirmed={quitAnyDaemon} onAborted={quit} > {__( - 'This browser is running with an incompatible version of the LBRY protocol and your install must be repaired. ' + 'This browser is running with an incompatible version of the LBRY protocol, please close LBRY and rerun the installation package to repair LBRY.' )}