@vunk/form 1.1.64 → 1.1.65
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.
|
@@ -18129,7 +18129,7 @@ const verify = async (params) => {
|
|
|
18129
18129
|
return res.datas;
|
|
18130
18130
|
}).then((data) => {
|
|
18131
18131
|
return {
|
|
18132
|
-
uploadedList: data.fileInfoList.map((item) => item.shardingMeta.identifier),
|
|
18132
|
+
uploadedList: data.fileInfoList.map((item) => item.shardingMeta.identifier + "-" + item.shardingMeta.chunkNumber),
|
|
18133
18133
|
uploaded: data.uploaded
|
|
18134
18134
|
};
|
|
18135
18135
|
});
|
|
@@ -18054,7 +18054,7 @@ const verify = async (params) => {
|
|
|
18054
18054
|
return res.datas;
|
|
18055
18055
|
}).then((data) => {
|
|
18056
18056
|
return {
|
|
18057
|
-
uploadedList: data.fileInfoList.map((item) => item.shardingMeta.identifier),
|
|
18057
|
+
uploadedList: data.fileInfoList.map((item) => item.shardingMeta.identifier + "-" + item.shardingMeta.chunkNumber),
|
|
18058
18058
|
uploaded: data.uploaded
|
|
18059
18059
|
};
|
|
18060
18060
|
});
|