progress - don't rethrow errors on main side

This commit is contained in:
Johannes Rieken
2017-01-18 16:51:50 +01:00
parent 95d1342bbe
commit 3186c15c7f
3 changed files with 7 additions and 11 deletions

View File

@@ -48,7 +48,7 @@ export class ExtHostProgress {
this._proxy.$progressEnd(handle);
return result;
}, err => {
this._proxy.$progressEnd(handle, err);
this._proxy.$progressEnd(handle);
throw err;
});
}