diff options
Diffstat (limited to 'vnext/src/components/Post.js')
-rw-r--r-- | vnext/src/components/Post.js | 2 |
1 files changed, 1 insertions, 1 deletions
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 || '' |