diff options
Diffstat (limited to 'vnext/src/components')
-rw-r--r-- | vnext/src/components/Feeds.js | 10 | ||||
-rw-r--r-- | vnext/src/components/Post.js | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/vnext/src/components/Feeds.js b/vnext/src/components/Feeds.js index 27d1c074..be9a1573 100644 --- a/vnext/src/components/Feeds.js +++ b/vnext/src/components/Feeds.js @@ -14,7 +14,7 @@ import { getMessages } from '../api'; import { UserType } from './Types'; export function Discover(props) { - let search = qs.parse(props.location.search); + let search = qs.parse(props.location.search.substring(1)); const query = { baseUrl: '/messages', search: search, @@ -33,7 +33,7 @@ export function Discussions(props) { export function Blog(props) { const { user } = props.match.params; - let search = qs.parse(props.location.search); + let search = qs.parse(props.location.search.substring(1)); search.uname = user; const query = { baseUrl: '/messages', @@ -77,7 +77,7 @@ class Feed extends React.Component { }; } componentDidMount() { - this.loadMessages(this.props.visitor.hash, this.props.location.search); + this.loadMessages(this.props.visitor.hash, this.props.location.search.substring(1)); } shouldComponentUpdate(nextProps, nextState) { @@ -91,7 +91,7 @@ class Feed extends React.Component { } componentDidUpdate(prevProps, prevState, shouldReload) { if (shouldReload) { - this.loadMessages(this.props.visitor.hash, this.props.location.search); + this.loadMessages(this.props.visitor.hash, this.props.location.search.substring(1)); } } loadMessages = (hash = '', filter = '') => { @@ -127,7 +127,7 @@ class Feed extends React.Component { } render() { - const { tag } = qs.parse(this.props.location.search || {}); + const { tag } = qs.parse(this.props.location.search.substring(1) || {}); const nodes = ( <> { diff --git a/vnext/src/components/Post.js b/vnext/src/components/Post.js index 555ad9af..ce64018a 100644 --- a/vnext/src/components/Post.js +++ b/vnext/src/components/Post.js @@ -12,7 +12,7 @@ import { post } from '../api'; export default class Post extends React.Component { constructor(props) { super(props); - let params = qs.parse(window.location.search); + let params = qs.parse(window.location.search.substring(1)); this.state = { attach: '', body: params.body || '' |