Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Cabecinha84 committed Apr 9, 2024
1 parent e8accc1 commit b4cfd9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ZelBack/src/services/fluxService.js
Original file line number Diff line number Diff line change
Expand Up @@ -979,7 +979,7 @@ async function getFluxInfo(req, res) {
info.daemon.info = daemonInfoRes.data;
if (info.daemon.info.blocks >= config.syncthingVersionCheckStart) {
const versionMinOK = fluxNetworkHelper.minVersionSatisfy(info.flux.syncthingVersion.replace(/[^\d.]/g, ''), '1.27.6');
if (!versionMinOK) throw new Error('Syncthing version bellow minimum version allowed 1.27.4, update your machine.');
if (!versionMinOK) throw new Error('Syncthing version bellow minimum version allowed 1.27.6, update your machine.');
}
const daemonNodeStatusRes = await daemonServiceFluxnodeRpcs.getFluxNodeStatus();
if (daemonNodeStatusRes.status === 'error') {
Expand Down

0 comments on commit b4cfd9c

Please sign in to comment.