diff --git a/assets/resources/scriptlets.js b/assets/resources/scriptlets.js index 231e60058..0bfb7a8c4 100644 --- a/assets/resources/scriptlets.js +++ b/assets/resources/scriptlets.js @@ -1365,6 +1365,10 @@ function jsonPruneXhrResponse( if ( xhrDetails === undefined ) { return innerResponse; } + if ( xhrDetails.latestResponseLength != innerResponse.length ) { + xhrDetails.response = undefined; + xhrDetails.latestResponseLength = innerResponse.length; + } if ( xhrDetails.response !== undefined ) { return xhrDetails.response; }