From 9f1dd954d7023c6a121659d1299fb83fc117a66d Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Sun, 11 Nov 2018 15:29:45 +0300 Subject: Fix qs.parse calls --- vnext/src/App.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vnext/src/App.js') diff --git a/vnext/src/App.js b/vnext/src/App.js index 9c6e3a54..d4e3acfe 100644 --- a/vnext/src/App.js +++ b/vnext/src/App.js @@ -22,7 +22,7 @@ import { me } from './api'; export default class App extends React.Component { constructor(props) { super(props); - let params = qs.parse(window.location.search); + let params = qs.parse(window.location.search.substring(1)); if (params.hash) { cookies.save('hash', params.hash, { path: '/' }); window.history.replaceState({}, document.title, `${window.location.protocol}//${window.location.host}${window.location.pathname}`); -- cgit v1.2.3