Fix resumableupload issue
FarmMaps.Develop/FarmMapsLib/develop This commit looks good Details

pull/1/head
Willem Dantuma 2019-09-16 16:58:57 +02:00
parent d7310dc378
commit bb20ffff58
1 changed files with 2 additions and 2 deletions

View File

@ -53,7 +53,7 @@ export class ResumableFileUploadService implements OnDestroy{
handleState(state:UploadState) {
switch(state.status) {
case "added": {
case "queue": {
this.files.push(new File(state));
this.isClosed=false;
};break;
@ -70,8 +70,8 @@ export class ResumableFileUploadService implements OnDestroy{
var parts = state.url.split("/");
file.itemCode = parts[parts.length-1];
file.progress = (state.progress?state.progress:0);
file.success=true;
}
file.success=true;
};break;
case "error": {
var file =this.files.find((f) => f.identifier == state.uploadId )