Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -689,9 +689,8 @@ function parseData (request, state) {
state.body = state.body.substr(5);
}

state.body = decodeURIComponent(state.body);

if (request.headers['content-type'] === 'text/plain') {
state.body = decodeURIComponent(state.body);
return JSON.parse(state.body);
}

Expand Down
4 changes: 3 additions & 1 deletion src/mappers/har.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ var packageInfo = require('../../package.json'),
url = require('url'),
querystring = require('querystring');

var ResourceTimingDecompression = require("resourcetiming-compression").ResourceTimingDecompression;

module.exports = {
initialise: function (/*options*/) {
// Asynchronously update the user agent database.
Expand All @@ -52,7 +54,7 @@ function map (data, referer, userAgent) {
// HACK: The title must be set by the client with BOOMR.addVar(),
// otherwise we fall back to using the page URL.
pages: getPages(data, data.title || referer),
entries: getEntries(data.restiming)
entries: ResourceTimingDecompression.decompressResources(JSON.parse(data.restiming))
}
});
}
Expand Down