Fix crash

This commit is contained in:
Rafael 2022-05-16 08:27:11 -03:00 committed by Thomas Zarebczan
parent 75df2a5f13
commit a4bb276608

View file

@ -41,10 +41,10 @@ export function getLivestreamUris(
if (channelIds && channelIds.length > 0) {
// $FlowFixMe
values = values.filter((v) => channelIds.includes(v.creatorId) && Boolean(v.claimUri));
values = values.filter((v) => channelIds.includes(v?.creatorId) && Boolean(v?.claimUri));
} else {
// $FlowFixMe
values = values.filter((v) => Boolean(v.claimUri));
values = values.filter((v) => Boolean(v?.claimUri));
}
if (excludedChannelIds) {