use the url from wpt if that is the only system that is used

This commit is contained in:
soulgalore 2014-07-10 13:00:42 +02:00
parent f2727ab35f
commit 673bd79b78
1 changed files with 3 additions and 1 deletions

View File

@ -397,7 +397,9 @@ module.exports = {
else if (pageData.browsertime)
return pageData.browsertime[0].pageData.url;
else if (pageData.gpsi)
return pageData.gpsi.id;
return pageData.gpsi.id;
else if (pageData.webpagetest)
return pageData.webpagetest.response.data.testUrl;
return 'undefined';
},