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

Port d0d23b8f0a to glitch-soc
This commit is contained in:
Thibaut Girka 2018-07-16 17:56:19 +02:00 committed by ThibG
parent 8501ad5c5c
commit 1fb78602c5

View file

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