@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.
- package/dist/tools-lib.cjs.development.js +2 -2
- package/dist/tools-lib.cjs.development.js.map +1 -1
- package/dist/tools-lib.cjs.production.min.js +1 -1
- package/dist/tools-lib.cjs.production.min.js.map +1 -1
- package/dist/tools-lib.esm.js +2 -2
- package/dist/tools-lib.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/service-API/recombinations/index.ts +92 -92
- package/src/service-API/user.ts +286 -286
|
@@ -2844,12 +2844,12 @@ function _getFilesSha1Info() {
|
|
|
2844
2844
|
|
|
2845
2845
|
case 18:
|
|
2846
2846
|
needHandleSha1 = data.filter(function (d) {
|
|
2847
|
-
return d.metaAnalyzeStatus
|
|
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
|
|
2852
|
+
return d.metaAnalyzeStatus !== 0 && d.metaAnalyzeStatus !== 1;
|
|
2853
2853
|
}).map(function (d) {
|
|
2854
2854
|
var state = 'fail';
|
|
2855
2855
|
|