@freelog/tools-lib 0.1.137 → 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.
@@ -2838,12 +2838,12 @@ function _getFilesSha1Info() {
2838
2838
 
2839
2839
  case 18:
2840
2840
  needHandleSha1 = data.filter(function (d) {
2841
- return d.metaAnalyzeStatus && d.metaAnalyzeStatus === 1;
2841
+ return d.metaAnalyzeStatus === 0 || d.metaAnalyzeStatus === 1;
2842
2842
  }).map(function (d) {
2843
2843
  return d.sha1;
2844
2844
  });
2845
2845
  finishedInfo = data.filter(function (d) {
2846
- return !d.metaAnalyzeStatus || d.metaAnalyzeStatus !== 1;
2846
+ return d.metaAnalyzeStatus !== 0 && d.metaAnalyzeStatus !== 1;
2847
2847
  }).map(function (d) {
2848
2848
  var state = 'fail';
2849
2849