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.
This commit is contained in:
parent
e317f573bf
commit
a967495c23
1 changed files with 2 additions and 2 deletions
|
@ -17,13 +17,13 @@ class ModalIncompatibleDaemon extends React.PureComponent<Props> {
|
||||||
isOpen
|
isOpen
|
||||||
contentLabel={__('Incompatible daemon running')}
|
contentLabel={__('Incompatible daemon running')}
|
||||||
type="confirm"
|
type="confirm"
|
||||||
confirmButtonLabel={__('Quit daemon')}
|
confirmButtonLabel={__('Close LBRY and daemon')}
|
||||||
abortButtonLabel={__('Do nothing')}
|
abortButtonLabel={__('Do nothing')}
|
||||||
onConfirmed={quitAnyDaemon}
|
onConfirmed={quitAnyDaemon}
|
||||||
onAborted={quit}
|
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.'
|
||||||
)}
|
)}
|
||||||
<Button
|
<Button
|
||||||
button="link"
|
button="link"
|
||||||
|
|
Loading…
Reference in a new issue