pure-upload
Advanced tools
Comparing version 8.1.1 to 8.1.2
# CHANGELOG | ||
## 8.1.1 | ||
## 8.1.1 - 8.1.2 | ||
@@ -5,0 +5,0 @@ Remove overwriting external guid |
@@ -303,3 +303,5 @@ "use strict"; | ||
files.forEach(function (file) { | ||
file.guid = newGuid(); | ||
if (file.guid === undefined) { | ||
file.guid = newGuid(); | ||
} | ||
delete file.uploadStatus; | ||
@@ -306,0 +308,0 @@ file.url = _this.uploadCore.getUrl(file); |
@@ -511,3 +511,6 @@ export function addEventHandler( | ||
files.forEach((file: IUploadFile) => { | ||
file.guid = newGuid(); | ||
if (file.guid === undefined) { | ||
file.guid = newGuid(); | ||
} | ||
delete file.uploadStatus; | ||
@@ -514,0 +517,0 @@ file.url = this.uploadCore.getUrl(file); |
{ | ||
"name": "pure-upload", | ||
"version": "8.1.1", | ||
"version": "8.1.2", | ||
"description": "The pure upload library without dependencies", | ||
@@ -5,0 +5,0 @@ "author": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
96534
2287