Fixing create_post endpoint, changing name url param to title. Fixes #448

This commit is contained in:
Dessalines 2020-01-20 11:08:51 -05:00
parent e31090c9bd
commit 9c99234e8b
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ export class CreatePost extends Component<any, any> {
get params(): PostFormParams {
let urlParams = new URLSearchParams(this.props.location.search);
let params: PostFormParams = {
name: urlParams.get('name'),
name: urlParams.get('title'),
community: urlParams.get('community') || this.prevCommunityName,
body: urlParams.get('body'),
url: urlParams.get('url'),

View File

@ -807,7 +807,7 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
}
get crossPostParams(): string {
let params = `?name=${this.props.post.name}`;
let params = `?title=${this.props.post.name}`;
if (this.props.post.url) {
params += `&url=${this.props.post.url}`;
}