diff --git a/FlowPlugins/FlowHelpers/1.0.0/cliUtils.js b/FlowPlugins/FlowHelpers/1.0.0/cliUtils.js index bebffc8..5451c39 100644 --- a/FlowPlugins/FlowHelpers/1.0.0/cliUtils.js +++ b/FlowPlugins/FlowHelpers/1.0.0/cliUtils.js @@ -197,7 +197,7 @@ var CLI = /** @class */ (function () { fps: fps, }); } - if (shouldUpdate === true && percentage > 0) { + if (percentage > 0) { _this.updateETA(percentage); _this.config.updateWorker({ percentage: percentage, diff --git a/FlowPluginsTs/FlowHelpers/1.0.0/cliUtils.ts b/FlowPluginsTs/FlowHelpers/1.0.0/cliUtils.ts index 966f75e..ef5f302 100644 --- a/FlowPluginsTs/FlowHelpers/1.0.0/cliUtils.ts +++ b/FlowPluginsTs/FlowHelpers/1.0.0/cliUtils.ts @@ -212,7 +212,7 @@ class CLI { }); } - if (shouldUpdate === true && percentage > 0) { + if (percentage > 0) { this.updateETA(percentage); this.config.updateWorker({ percentage,