[Glitch] Do not crash in getStatusIds when there is a gap in the timeline

Port b1938d7853 to glitch-soc
This commit is contained in:
Thibaut Girka 2018-05-27 19:35:27 +02:00 committed by ThibG
parent 5cc4d34250
commit fbc25bdd2d
1 changed files with 2 additions and 0 deletions

View File

@ -21,6 +21,8 @@ const makeGetStatusIds = () => createSelector([
}
return statusIds.filter(id => {
if (id === null) return true;
const statusForId = statuses.get(id);
let showStatus = true;