mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-24 06:58:06 +01:00
[Glitch] Do not crash in getStatusIds when there is a gap in the timeline
Port b1938d7853
to glitch-soc
This commit is contained in:
parent
5cc4d34250
commit
fbc25bdd2d
1 changed files with 2 additions and 0 deletions
|
@ -21,6 +21,8 @@ const makeGetStatusIds = () => createSelector([
|
|||
}
|
||||
|
||||
return statusIds.filter(id => {
|
||||
if (id === null) return true;
|
||||
|
||||
const statusForId = statuses.get(id);
|
||||
let showStatus = true;
|
||||
|
||||
|
|
Loading…
Reference in a new issue