Skip to content

fix rt query parameter and rt new data format #95

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
@@ -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);
}

4 changes: 3 additions & 1 deletion src/mappers/har.js
Original file line number Diff line number Diff line change
@@ -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.
@@ -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))
}
});
}