Do not cause an error if domain_lists.blocks.next is undefined (#8021)

A valid URL is always truthy, so we can simplify this check
master
ThibG 6 years ago committed by Eugen Rochko
parent 0eacf2b419
commit d0d23b8f0a
  1. 2
      app/javascript/mastodon/actions/domain_blocks.js

@ -128,7 +128,7 @@ export function expandDomainBlocks() {
return (dispatch, getState) => {
const url = getState().getIn(['domain_lists', 'blocks', 'next']);
if (url === null) {
if (!url) {
return;
}

Loading…
Cancel
Save