From b5a75a4108191a0bf7aa640b959d990f6637a3dd Mon Sep 17 00:00:00 2001 From: Albert Gasset Date: Wed, 13 Mar 2019 16:47:27 +0100 Subject: [PATCH] MOBILE-2915 site: Don't clone errors, they might contain cyclic references --- src/classes/site.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/classes/site.ts b/src/classes/site.ts index 04d133a2c..acdde5a92 100644 --- a/src/classes/site.ts +++ b/src/classes/site.ts @@ -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)); }); }