@freelog/tools-lib 0.1.136 → 0.1.138

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2844,12 +2844,12 @@ function _getFilesSha1Info() {
2844
2844
 
2845
2845
  case 18:
2846
2846
  needHandleSha1 = data.filter(function (d) {
2847
- return d.metaAnalyzeStatus && d.metaAnalyzeStatus === 1;
2847
+ return d.metaAnalyzeStatus === 0 || d.metaAnalyzeStatus === 1;
2848
2848
  }).map(function (d) {
2849
2849
  return d.sha1;
2850
2850
  });
2851
2851
  finishedInfo = data.filter(function (d) {
2852
- return !d.metaAnalyzeStatus || d.metaAnalyzeStatus !== 1;
2852
+ return d.metaAnalyzeStatus !== 0 && d.metaAnalyzeStatus !== 1;
2853
2853
  }).map(function (d) {
2854
2854
  var state = 'fail';
2855
2855