Browse Source

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
pull/4/head
ThibG 5 years ago
committed by Eugen Rochko
parent
commit
d0d23b8f0a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/javascript/mastodon/actions/domain_blocks.js

+ 1
- 1
app/javascript/mastodon/actions/domain_blocks.js View File

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

Loading…
Cancel
Save