[chrome/nav] always parse the query string

This commit is contained in:
spalger 2016-03-28 14:06:53 -07:00
parent 237a9e2f8a
commit e3f2714e8a

View file

@ -51,7 +51,7 @@ export default function (chrome, internals) {
}
function decodeKibanaUrl(url) {
const parsedUrl = parse(url);
const parsedUrl = parse(url, true);
const appId = getAppId(parsedUrl);
const hash = parsedUrl.hash || '';
const parsedHash = parse(hash.slice(1), true);