Merge pull request #1752 from 42degrees/42degrees_ticket1749_textChange

Changed the error message given when the daemon didn't update
This commit is contained in:
Sean Yesmunt 2018-07-14 19:57:37 -04:00 committed by GitHub
commit 265c22dacd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View file

@ -38,6 +38,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
### Changed
* Show claim name, instead of URI, when loading a channel([#1711](https://github.com/lbryio/lbry-desktop/pull/1711))
* Updated LBRY daemon to 0.20.3 which contains some availability improvements ([v0.20.3](https://github.com/lbryio/lbry/releases/tag/v0.20.3))
* Change startup error message to be more specific about repairing install([#1749](https://github.com/lbryio/lbry-desktop/issues/1749))
## [0.22.0] - 2018-06-26

View file

@ -17,13 +17,13 @@ class ModalIncompatibleDaemon extends React.PureComponent<Props> {
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 the LBRY app and rerun the installation package to repair it'
)}
<Button
button="link"