diff options
Diffstat (limited to 'vnext/src/components/Feeds.js')
-rw-r--r-- | vnext/src/components/Feeds.js | 10 |
1 files changed, 5 insertions, 5 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 = ( <> { |