Skip to content

Commit

Permalink
update fluxOs version required
Browse files Browse the repository at this point in the history
  • Loading branch information
Cabecinha84 committed Nov 14, 2023
1 parent 2392d21 commit 21c77e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/application/checks.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ async function isVersionOK(ip, port) {
const url = `http://${ip}:${port}/flux/info`;
const response = await serviceHelper.httpGetRequest(url, timeout);
const version = response.data.data.flux.version.replace(/\./g, '');
if (+version >= 4170) {
if (+version >= 4180) {
if (response.data.data.flux.development === 'false' || !response.data.data.flux.development) {
return true;
}
Expand Down

0 comments on commit 21c77e2

Please sign in to comment.