(quickfix) Check for daemon version equal or higher.
This commit is contained in:
parent
82b6e3af07
commit
4f6481d4c4
1 changed files with 1 additions and 1 deletions
|
@ -224,7 +224,7 @@ export function doCheckDaemonVersion() {
|
|||
return function(dispatch, getState) {
|
||||
lbry.version().then(({ lbrynet_version }) => {
|
||||
dispatch({
|
||||
type: config.lbrynetDaemonVersion == lbrynet_version
|
||||
type: lbrynet_version.localeCompare(config.lbrynetDaemonVersion) >= 0
|
||||
? types.DAEMON_VERSION_MATCH
|
||||
: types.DAEMON_VERSION_MISMATCH,
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue