fix empty uri calls #1543

Merged
daovist merged 1 commit from fix-empty-fetch into master 2018-06-04 16:49:33 +02:00

View file

@ -42,7 +42,7 @@ class CategoryList extends React.PureComponent<Props, State> {
componentDidMount() {
const { fetching, categoryLink, fetchChannel } = this.props;
if (!fetching) {
if (!fetching && categoryLink) {
fetchChannel(categoryLink);
}