Fixing issue with front page.

This commit is contained in:
Dessalines 2019-04-20 13:20:27 -07:00
parent ddabc42861
commit aeffd80727
2 changed files with 2 additions and 2 deletions

View file

@ -28,7 +28,7 @@ export class PostListings extends Component<PostListingsProps, PostListingsState
moderators: [],
posts: [],
sortType: SortType.Hot,
type_: (this.props.type !== undefined) ? this.props.type :
type_: (this.props.type !== undefined && UserService.Instance.user) ? this.props.type :
this.props.communityId
? ListingType.Community
: UserService.Instance.user

View file

@ -1 +1 @@
export let version: string = "v0.0.3-0-gb841d43";
export let version: string = "v0.0.3-3-gfe52d59";