MOBILE-2915 site: Don't clone errors, they might contain cyclic references

main
Albert Gasset 2019-03-13 16:47:27 +01:00
parent 67dfaada27
commit b5a75a4108
1 changed files with 0 additions and 4 deletions

View File

@ -579,8 +579,6 @@ export class CoreSite {
return this.ongoingRequests[cacheId].then((response) => {
// Clone the data, this may prevent errors if in the callback the object is modified.
return this.utils.clone(response);
}).catch((error) => {
return Promise.reject(this.utils.clone(error));
});
}
@ -701,8 +699,6 @@ export class CoreSite {
return promise.then((response) => {
// We pass back a clone of the original object, this may prevent errors if in the callback the object is modified.
return this.utils.clone(response);
}).catch((error) => {
return Promise.reject(this.utils.clone(error));
});
}